agenda_culturel/src/agenda_culturel/migrations/0004_alter_category_color.py

20 lines
542 B
Python

# Generated by Django 4.2.1 on 2023-10-21 19:18
import colorfield.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('agenda_culturel', '0003_category'),
]
operations = [
migrations.AlterField(
model_name='category',
name='color',
field=colorfield.fields.ColorField(default='#FFFFFF', help_text='Color used as background for the category', image_field=None, max_length=25, samples=None, verbose_name='Color'),
),
]