fixed migration order and dependencies

This commit is contained in:
vabene1111
2021-06-30 15:33:35 +02:00
committed by smilerz
parent 2c3e722458
commit 1bd90f9304
8 changed files with 23 additions and 139 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-04-22 21:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0143_create_searchfields'),
]
operations = [
migrations.AlterField(
model_name='userpreference',
name='search_style',
field=models.CharField(choices=[('SMALL', 'Small'), ('LARGE', 'Large'), ('NEW', 'New')], default='LARGE', max_length=64),
),
]