blob: 966478a911ab06da85bf1ba0746e1c5274cbe82c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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),
),
]
|