mirror of
https://github.com/maciej3031/comixify.git
synced 2026-03-11 08:54:35 +00:00
Add migration
This commit is contained in:
parent
37c729eb7c
commit
2597a83251
1 changed files with 38 additions and 0 deletions
38
api/migrations/0002_add_additional_info_to_Comic.py
Normal file
38
api/migrations/0002_add_additional_info_to_Comic.py
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Generated by Django 2.0.7 on 2018-11-18 00:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('api', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='comic',
|
||||
name='frames_mode',
|
||||
field=models.PositiveIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='comic',
|
||||
name='image_assessment_mode',
|
||||
field=models.PositiveIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='comic',
|
||||
name='rl_mode',
|
||||
field=models.PositiveIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='comic',
|
||||
name='style_transfer_mode',
|
||||
field=models.PositiveIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='comic',
|
||||
name='yt_url',
|
||||
field=models.URLField(blank=True, null=True),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue