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.

27 lines
763 B

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