Tomás Ponce Gessi 3 سال پیش
والد
کامیت
bf4cef7bea
1فایلهای تغییر یافته به همراه19 افزوده شده و 0 حذف شده
  1. 19 0
      app/api/migrations/0005_alter_programmedreport_frequency.py

+ 19 - 0
app/api/migrations/0005_alter_programmedreport_frequency.py

@@ -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]),
+        ),
+    ]