38 lines
977 B
Python
38 lines
977 B
Python
|
# Generated by Django 4.0.3 on 2022-06-25 10:48
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
("dash", "0006_auto_20220619_0800"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name="InstanceCreated",
|
||
|
fields=[
|
||
|
(
|
||
|
"id",
|
||
|
models.BigAutoField(
|
||
|
auto_created=True,
|
||
|
primary_key=True,
|
||
|
serialize=False,
|
||
|
verbose_name="ID",
|
||
|
),
|
||
|
),
|
||
|
("creted", models.BooleanField(default=False)),
|
||
|
(
|
||
|
"instance",
|
||
|
models.ForeignKey(
|
||
|
on_delete=django.db.models.deletion.PROTECT, to="dash.instance"
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
]
|