| 1 | # Generated by Django 4.1 on 2022-08-17 10:04
|
|---|
| 2 |
|
|---|
| 3 | from django.db import migrations, models
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 | class Migration(migrations.Migration):
|
|---|
| 7 |
|
|---|
| 8 | initial = True
|
|---|
| 9 |
|
|---|
| 10 | dependencies = []
|
|---|
| 11 |
|
|---|
| 12 | operations = [
|
|---|
| 13 | migrations.CreateModel(
|
|---|
| 14 | name="Base",
|
|---|
| 15 | fields=[
|
|---|
| 16 | ("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
|---|
| 17 | ("bar", models.FloatField()),
|
|---|
| 18 | ],
|
|---|
| 19 | ),
|
|---|
| 20 | migrations.CreateModel(
|
|---|
| 21 | name="Son",
|
|---|
| 22 | fields=[
|
|---|
| 23 | ("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
|---|
| 24 | ("foo", models.FloatField()),
|
|---|
| 25 | ],
|
|---|
| 26 | ),
|
|---|
| 27 | ]
|
|---|