22 lines
471 B
Python
22 lines
471 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.14 on 2018-07-13 13:58
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
import equipment.models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('equipment', '0002_auto_20180713_1321'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='equipmentremark',
|
||
|
name='ids',
|
||
|
field=equipment.models.IdField(),
|
||
|
),
|
||
|
]
|