diff options
author | 2018-11-02 18:39:48 +0000 | |
---|---|---|
committer | 2018-11-02 18:39:48 +0000 | |
commit | 6c4666d36d2853a4ee8b9fd61086a1e4f1dd7776 (patch) | |
tree | 3ae797514bd5d13582075165936aaa503e38daef /api/migrations/0014_auto_20181025_1959.py | |
parent | Merge branch 'snake_idioms' into 'django' (diff) | |
parent | Added help text (diff) |
Merge branch 'special_snakes' into 'django'
Django - Special Snakes API
See merge request python-discord/projects/site!45
Diffstat (limited to 'api/migrations/0014_auto_20181025_1959.py')
-rw-r--r-- | api/migrations/0014_auto_20181025_1959.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/api/migrations/0014_auto_20181025_1959.py b/api/migrations/0014_auto_20181025_1959.py new file mode 100644 index 00000000..3599d2cd --- /dev/null +++ b/api/migrations/0014_auto_20181025_1959.py @@ -0,0 +1,23 @@ +# Generated by Django 2.1.2 on 2018-10-25 19:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0013_specialsnake_image'), + ] + + operations = [ + migrations.AlterField( + model_name='specialsnake', + name='info', + field=models.TextField(help_text='Info about a special snake.'), + ), + migrations.AlterField( + model_name='specialsnake', + name='name', + field=models.CharField(help_text='A special snake name.', max_length=140, primary_key=True, serialize=False), + ), + ] |