blob: d90e477070625c90745fac085a11ee44e87afa8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.db import migrations, models
class Migration(migrations.Migration):
operations = [
migrations.CreateModel(
"Signal",
[
("id", models.AutoField(primary_key=True)),
],
),
]
|