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-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,
),
]
|