19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 3.2.6 on 2021-09-13 08:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('em', '0003_equipment_type'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='count',
|
|
field=models.IntegerField(default=0, verbose_name='数量'),
|
|
),
|
|
]
|