Jarvis/jarvis/planning/migrations/0007_eventtype_color.py

20 lines
543 B
Python

# Generated by Django 3.2.8 on 2022-02-03 18:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('planning', '0006_rename_event_participation_eventparticipation'),
]
operations = [
migrations.AddField(
model_name='eventtype',
name='color',
field=models.PositiveSmallIntegerField(choices=[(0, 'default'), (1, 'azure'), (2, 'green'), (3, 'orange'), (4, 'red')], default=0),
preserve_default=False,
),
]