mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fix migration planner to fully understand squashed migrations. And test.
This commit is contained in:
parent
4cfbde71a3
commit
5ab8b5d72c
9 changed files with 207 additions and 37 deletions
24
tests/migrations/test_migrations_squashed/0002_second.py
Normal file
24
tests/migrations/test_migrations_squashed/0002_second.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [("migrations", "0001_initial")]
|
||||
|
||||
operations = [
|
||||
|
||||
migrations.DeleteModel("Tribble"),
|
||||
|
||||
migrations.RemoveField("Author", "silly_field"),
|
||||
|
||||
migrations.AddField("Author", "rating", models.IntegerField(default=0)),
|
||||
|
||||
migrations.CreateModel(
|
||||
"Book",
|
||||
[
|
||||
("id", models.AutoField(primary_key=True)),
|
||||
("author", models.ForeignKey("migrations.Author", null=True)),
|
||||
],
|
||||
)
|
||||
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue