From aebf48cff6e41eb6d8dde695b10380da4e57d733 Mon Sep 17 00:00:00 2001 From: Hasan-Ahmad Date: Thu, 25 Oct 2018 21:02:42 +0100 Subject: code presentasion and help text on models --- api/migrations/0014_auto_20181025_1959.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 api/migrations/0014_auto_20181025_1959.py (limited to 'api/migrations/0014_auto_20181025_1959.py') 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), + ), + ] -- cgit v1.2.3