1
0
mirror of https://github.com/django/django.git synced 2025-01-16 05:12:23 +00:00

14 lines
262 B
Python
Raw Normal View History

from django.db import migrations, models
class Migration(migrations.Migration):
operations = [
migrations.CreateModel(
"Signal",
[
("id", models.AutoField(primary_key=True)),
],
),
]