mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Migration VCS conflict detection and --merge for makemigrations
This commit is contained in:
parent
cd9e85ece9
commit
3b8e46cbc7
11 changed files with 341 additions and 117 deletions
27
tests/migrations/test_migrations_conflict/0001_initial.py
Normal file
27
tests/migrations/test_migrations_conflict/0001_initial.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
operations = [
|
||||
|
||||
migrations.CreateModel(
|
||||
"Author",
|
||||
[
|
||||
("id", models.AutoField(primary_key=True)),
|
||||
("name", models.CharField(max_length=255)),
|
||||
("slug", models.SlugField(null=True)),
|
||||
("age", models.IntegerField(default=0)),
|
||||
("silly_field", models.BooleanField(default=False)),
|
||||
],
|
||||
),
|
||||
|
||||
migrations.CreateModel(
|
||||
"Tribble",
|
||||
[
|
||||
("id", models.AutoField(primary_key=True)),
|
||||
("fluffy", models.BooleanField(default=True)),
|
||||
],
|
||||
)
|
||||
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue