chrono/chrono/agendas/migrations/0111_timeperiod_weekday_ind...

34 lines
1004 B
Python

# Generated by Django 2.2.19 on 2022-03-15 11:41
import django.contrib.postgres.fields
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('agendas', '0110_person_sharedcustodyagenda_sharedcustodyperiod_sharedcustodyrule'),
]
operations = [
migrations.AddField(
model_name='timeperiod',
name='weekday_indexes',
field=django.contrib.postgres.fields.ArrayField(
base_field=models.IntegerField(
choices=[
(1, 'First of the month'),
(2, 'Second of the month'),
(3, 'Third of the month'),
(4, 'Fourth of the month'),
(5, 'Fifth of the month'),
]
),
blank=True,
null=True,
size=None,
verbose_name='Repeat',
),
),
]