diff options
Diffstat (limited to 'api/migrations')
| -rw-r--r-- | api/migrations/0009_snakefact.py | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/api/migrations/0009_snakefact.py b/api/migrations/0009_snakefact.py new file mode 100644 index 00000000..966478a9 --- /dev/null +++ b/api/migrations/0009_snakefact.py @@ -0,0 +1,21 @@ +# Generated by Django 2.1.2 on 2018-10-11 14:25 + +import api.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + +    dependencies = [ +        ('api', '0008_tag_embed_validator'), +    ] + +    operations = [ +        migrations.CreateModel( +            name='SnakeFact', +            fields=[ +                ('fact', models.CharField(help_text='A fact about snakes.', max_length=200, primary_key=True, serialize=False)), +            ], +            bases=(api.models.ModelReprMixin, models.Model), +        ), +    ] | 
