mirror of
https://github.com/maciej3031/comixify.git
synced 2026-03-11 08:54:35 +00:00
* 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
18 lines
400 B
Python
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),
|
|
),
|
|
]
|