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.

29 lines
834 B

2 years ago
2 years ago
2 years ago
  1. # Generated by Django 3.2.11 on 2022-02-04 02:01
  2. from django.db import migrations, models
  3. import django.db.models.deletion
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ("projects", "0002_auto_20220204_0201"),
  7. ("labels", "0004_auto_20220128_0246"),
  8. ]
  9. operations = [
  10. migrations.SeparateDatabaseAndState(
  11. state_operations=[
  12. migrations.AlterField(
  13. model_name="relation",
  14. name="project",
  15. field=models.ForeignKey(
  16. on_delete=django.db.models.deletion.CASCADE,
  17. related_name="annotation_relations",
  18. to="projects.project",
  19. ),
  20. ),
  21. ],
  22. database_operations=[],
  23. )
  24. ]