|
|
@@ -0,0 +1,19 @@
|
|
|
+# Generated by Django 4.0.4 on 2023-01-16 22:15
|
|
|
+
|
|
|
+import api.validators
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('api', '0004_alter_programmedreport_frequency'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='programmedreport',
|
|
|
+ name='frequency',
|
|
|
+ field=models.CharField(default='monthly', max_length=20, validators=[api.validators.valid_frequency_format]),
|
|
|
+ ),
|
|
|
+ ]
|