You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
911 B
29 lines
911 B
# Generated by Django 2.0.7 on 2019-06-21 11:07
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0026_banner_stretch_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='banner',
|
|
name='color2',
|
|
field=models.CharField(blank=True, default='', max_length=7),
|
|
),
|
|
migrations.AddField(
|
|
model_name='banner',
|
|
name='main_banner',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(), blank=True, default=[], size=None),
|
|
),
|
|
migrations.AddField(
|
|
model_name='banner',
|
|
name='pages',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(), blank=True, default=[], size=None),
|
|
),
|
|
]
|
|
|