mirror of
https://github.com/django/django.git
synced 2024-12-29 12:36:08 +00:00
13 lines
261 B
Python
13 lines
261 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
"Signal",
|
||
|
[
|
||
|
("id", models.AutoField(primary_key=True)),
|
||
|
],
|
||
|
),
|
||
|
]
|