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.

46 lines
1.3 KiB

  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', '0033_auto_20220127_0654'),
  6. ]
  7. operations = [
  8. migrations.SeparateDatabaseAndState(
  9. state_operations=[
  10. migrations.RemoveField(
  11. model_name='example',
  12. name='annotations_approved_by',
  13. ),
  14. migrations.RemoveField(
  15. model_name='example',
  16. name='project',
  17. ),
  18. migrations.AlterUniqueTogether(
  19. name='examplestate',
  20. unique_together=None,
  21. ),
  22. migrations.RemoveField(
  23. model_name='examplestate',
  24. name='confirmed_by',
  25. ),
  26. migrations.RemoveField(
  27. model_name='examplestate',
  28. name='example',
  29. ),
  30. migrations.DeleteModel(
  31. name='Comment',
  32. ),
  33. ],
  34. database_operations=[
  35. migrations.AlterModelTable(
  36. name='Comment',
  37. table='examples_comment'
  38. )
  39. ]
  40. )
  41. ]