diff options
author | 2018-10-23 12:58:23 +0100 | |
---|---|---|
committer | 2018-10-23 12:58:23 +0100 | |
commit | da5780d914d152187f395ffce3fec26106e1888e (patch) | |
tree | 8c8cc9b5b8e7e474524ce3514ac7e8204c8eda7f /api/migrations/0013_specialsnake_image.py | |
parent | Added special snakes api (diff) |
Added image field
Diffstat (limited to 'api/migrations/0013_specialsnake_image.py')
-rw-r--r-- | api/migrations/0013_specialsnake_image.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/api/migrations/0013_specialsnake_image.py b/api/migrations/0013_specialsnake_image.py new file mode 100644 index 00000000..a0d0d318 --- /dev/null +++ b/api/migrations/0013_specialsnake_image.py @@ -0,0 +1,21 @@ +# Generated by Django 2.1.2 on 2018-10-23 11:51 + +import datetime +from django.db import migrations, models +from django.utils.timezone import utc + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0012_specialsnake'), + ] + + operations = [ + migrations.AddField( + model_name='specialsnake', + name='image', + field=models.URLField(default=datetime.datetime(2018, 10, 23, 11, 51, 23, 703868, tzinfo=utc)), + preserve_default=False, + ), + ] |