From 181d57d8a6dda1e1735b445aacdec446c6adf301 Mon Sep 17 00:00:00 2001 From: Robin Tissot <tissotrobin@gmail.com> Date: Thu, 20 May 2021 15:32:39 +0200 Subject: [PATCH] Forgoten migration. --- .../core/migrations/0044_auto_20210520_1332.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/apps/core/migrations/0044_auto_20210520_1332.py diff --git a/app/apps/core/migrations/0044_auto_20210520_1332.py b/app/apps/core/migrations/0044_auto_20210520_1332.py new file mode 100644 index 00000000..585d06f9 --- /dev/null +++ b/app/apps/core/migrations/0044_auto_20210520_1332.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.20 on 2021-05-20 13:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0043_auto_20210324_1016'), + ] + + operations = [ + migrations.AlterField( + model_name='document', + name='read_direction', + field=models.CharField(choices=[('ltr', 'Left to right'), ('rtl', 'Right to left')], default='ltr', help_text='The read direction describes the order of the elements in the document, in opposition with the text direction which describes the order of the words in a line and is set by the script.', max_length=3), + ), + ] -- GitLab