mirror of
https://github.com/django/django.git
synced 2025-11-23 12:26:57 +00:00
Some checks failed
Docs / spelling (push) Waiting to run
Docs / blacken-docs (push) Waiting to run
Docs / lint-docs (push) Waiting to run
Linters / flake8 (push) Has been cancelled
Linters / isort (push) Has been cancelled
Linters / black (push) Has been cancelled
Tests / Windows, SQLite, Python 3.13 (push) Has been cancelled
Tests / JavaScript tests (push) Has been cancelled
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("migrations", "0002_second"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="ModelWithCustomBase",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
verbose_name="ID",
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True,
|
|
),
|
|
),
|
|
],
|
|
options={},
|
|
bases=(models.Model,),
|
|
),
|
|
migrations.CreateModel(
|
|
name="UnmigratedModel",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
verbose_name="ID",
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True,
|
|
),
|
|
),
|
|
],
|
|
options={},
|
|
bases=(models.Model,),
|
|
),
|
|
migrations.DeleteModel(
|
|
name="Author",
|
|
),
|
|
migrations.DeleteModel(
|
|
name="Book",
|
|
),
|
|
]
|