0003_customer_user_no.py 415 B

123456789101112131415161718
  1. # Generated by Django 2.2.7 on 2020-03-09 09:43
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('users', '0002_customer'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='customer',
  10. name='user_no',
  11. field=models.CharField(max_length=20, null=True, verbose_name='用户编码'),
  12. ),
  13. ]