diff options
author | 2018-10-25 21:02:42 +0100 | |
---|---|---|
committer | 2018-10-25 21:02:42 +0100 | |
commit | aebf48cff6e41eb6d8dde695b10380da4e57d733 (patch) | |
tree | a58f23912a501a09ce890e9a5983bebd48b545e0 /api/migrations | |
parent | Fixed linting (diff) |
code presentasion and help text on models
Diffstat (limited to 'api/migrations')
-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), + ), + ] |