multistream/frontend/migrations/0004_auto_20190209_1855.py
File Type: text/x-script.python
# Generated by Django 2.1.5 on 2019-02-09 18:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('frontend', '0003_auto_20190207_1645'),
]
operations = [
migrations.AddField(
model_name='community',
name='background_position_x',
field=models.CharField(blank=True, choices=[('left', 'Left'), ('center', 'Center'), ('right', 'Right')], default='center', max_length=6),
),
migrations.AddField(
model_name='community',
name='background_position_y',
field=models.CharField(blank=True, choices=[('top', 'Top'), ('center', 'Center'), ('bottom', 'Bottom')], default='center', max_length=6),
),
migrations.AddField(
model_name='community',
name='background_size',
field=models.CharField(blank=True, choices=[('cover', 'Cover'), ('contain', 'Contain'), ('100%', 'Original Size')], default='cover', max_length=7),
),
]