Skip to content
Snippets Groups Projects
Verified Commit 171e67d9 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Migrate RRule

parent 311764f7
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.2.18 on 2023-03-26 20:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0024_auto_20230214_1945'),
]
operations = [
migrations.AlterModelOptions(
name='rrule',
options={'ordering': ('pk',), 'verbose_name': 'recurrence rule'},
),
migrations.AlterField(
model_name='rrule',
name='count',
field=models.IntegerField(blank=True, help_text='How many occurrences should be generated.', null=True),
),
migrations.AlterField(
model_name='rrule',
name='interval',
field=models.IntegerField(default=1, help_text='The interval between each freq iteration.'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment