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 0000000000000000000000000000000000000000..585d06f9074a28221f6653a57d56b4d2b19f5c0d
--- /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),
+        ),
+    ]