You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
440 B

  1. # Generated by Django 3.2.8 on 2021-11-08 06:06
  2. from django.db import migrations, models
  3. import uuid
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('api', '0016_auto_20211018_0556'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='example',
  11. name='uuid',
  12. field=models.UUIDField(db_index=True, default=uuid.uuid4, editable=False, unique=True),
  13. ),
  14. ]