From: Yoan Le Clanche Date: Tue, 18 Jan 2022 16:12:21 +0000 (+0100) Subject: Add Webclass correction DB migration X-Git-Tag: 2.5.1~11^2^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=refs%2Fheads%2Ffeature%2Fwebclass-correction;p=teleforma.git Add Webclass correction DB migration --- diff --git a/teleforma/webclass/migrations/0006_webclassrecord_category.py b/teleforma/webclass/migrations/0006_webclassrecord_category.py new file mode 100644 index 00000000..88275e3c --- /dev/null +++ b/teleforma/webclass/migrations/0006_webclassrecord_category.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.3 on 2022-01-10 10:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('webclass', '0005_webclass_teleforma_w_status_03cc4b_idx'), + ] + + operations = [ + migrations.AddField( + model_name='webclassrecord', + name='category', + field=models.CharField(choices=[('WC', 'Webclass'), ('CC', 'Correction de copie')], default='WC', max_length=2, verbose_name='Catégorie'), + ), + ]