# Generated by Django 3.2 on 2021-04-22 21:33 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('cookbook', '0144_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), ), ]