0001_initial.py 327 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. operations = [
  6. migrations.CreateModel(
  7. "Signal",
  8. [
  9. ("id", models.AutoField(primary_key=True)),
  10. ],
  11. ),
  12. ]