소스 검색

Migrations

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