mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +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
23 lines
666 B
Python
23 lines
666 B
Python
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.BigAutoField(primary_key=True)),
|
|
(
|
|
"author",
|
|
models.ForeignKey("migrations.Author", models.SET_NULL, null=True),
|
|
),
|
|
],
|
|
),
|
|
]
|