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.

20 lines
441 B

2 years ago
2 years ago
2 years ago
  1. # Generated by Django 3.2.8 on 2021-11-08 06:06
  2. import uuid
  3. from django.db import migrations, models
  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. ]