mirror of
https://github.com/django/django.git
synced 2024-12-23 17:46:27 +00:00
f937c9ec97
Thanks Markus for your contribution and Tim for your review.
17 lines
327 B
Python
17 lines
327 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
"Signal",
|
|
[
|
|
("id", models.AutoField(primary_key=True)),
|
|
],
|
|
),
|
|
]
|