31 lines
867 B
Python
31 lines
867 B
Python
# Generated by Django 2.2.7 on 2019-12-02 19:01
|
|
|
|
import colorful.fields
|
|
from django.db import migrations, models
|
|
import multiselectfield.db.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('areas', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='areas',
|
|
name='usersfield',
|
|
field=multiselectfield.db.fields.MultiSelectField(blank=True, max_length=200),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='areas',
|
|
name='color',
|
|
field=colorful.fields.RGBColorField(colors=['#FFB900', '#E74856', '#0078D7', '#0099BC', '#7A7574'], default='#0099BC'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='areas',
|
|
name='desc',
|
|
field=models.TextField(blank=True, max_length=3000),
|
|
),
|
|
]
|