暂无描述

0008_product_code.py 430B

1234567891011121314151617181920
  1. # Generated by Django 3.2.5 on 2021-07-27 16:18
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('fruit', '0007_auto_20210727_2312'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='product',
  10. name='code',
  11. field=models.CharField(default='', max_length=200),
  12. preserve_default=False,
  13. ),
  14. ]