comixify/api/migrations/0003_add_timestamp.py
Maciej Pęśko ffc6b2dc28
Add get comix endpoint (#18)
* Add endpoint to getting images

* Add migration

* Fix minor bug

* Fix another bug

* Fix problem with CartoonGAN not change model and add timestamp to Comic

* Add minimum response delay
Update sample
2018-11-18 13:48:39 +01:00

18 lines
400 B
Python

# Generated by Django 2.0.7 on 2018-11-18 10:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0002_add_additional_info_to_Comic'),
]
operations = [
migrations.AddField(
model_name='comic',
name='timestamp',
field=models.DateTimeField(auto_now_add=True),
),
]