19 lines
466 B
Python
19 lines
466 B
Python
# Generated by Django 3.0.5 on 2020-05-02 10:45
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cookbook', '0036_auto_20200427_1800'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userpreference',
|
|
name='search_style',
|
|
field=models.CharField(choices=[('SMALL', 'Small'), ('LARGE', 'Large')], default='LARGE', max_length=64),
|
|
),
|
|
]
|