Skip to content

Commit

Permalink
add the TC.frequency migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Fasand committed May 5, 2022
1 parent 0fc616e commit ea4ab74
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Seeder/harvests/migrations/0022_auto_20220503_0931.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 2.2.20 on 2022-05-03 09:31

from django.db import migrations
import harvests.models


class Migration(migrations.Migration):

dependencies = [
('harvests', '0021_auto_20211221_0937'),
]

operations = [
migrations.AlterField(
model_name='topiccollection',
name='target_frequency',
field=harvests.models.PatchedMultiSelectField(blank=True, choices=[(0, 'Once only'), (1, 'Once a year'), (2, 'Twice a year'), (4, 'Quarterly'), (6, 'Every two months'), (12, 'Every month'), (52, 'Weekly'), (365, 'Daily')], max_length=19, null=True, verbose_name='Frequency'),
),
]

0 comments on commit ea4ab74

Please sign in to comment.