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.

34 lines
910 B

  1. # Generated by Django 3.2.11 on 2022-01-28 02:46
  2. from django.db import migrations
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('api', '0034_auto_20220128_0246'),
  6. ('labels', '0004_auto_20220128_0246'),
  7. ]
  8. operations = [
  9. migrations.SeparateDatabaseAndState(
  10. state_operations=[
  11. migrations.DeleteModel(
  12. name='Example',
  13. ),
  14. migrations.DeleteModel(
  15. name='ExampleState',
  16. ),
  17. ],
  18. database_operations=[
  19. migrations.AlterModelTable(
  20. name='Example',
  21. table='examples_example'
  22. ),
  23. migrations.AlterModelTable(
  24. name='ExampleState',
  25. table='examples_examplestate'
  26. )
  27. ]
  28. )
  29. ]