diff --git a/aleksis/apps/resint/migrations/0006_livedocument.py b/aleksis/apps/resint/migrations/0006_livedocument.py
index 44a186a547ae8495542f4d3ea0987dc3528d33b2..0065c61addd0ed16f283c461fb98cdf1585ed989 100644
--- a/aleksis/apps/resint/migrations/0006_livedocument.py
+++ b/aleksis/apps/resint/migrations/0006_livedocument.py
@@ -18,8 +18,8 @@ class Migration(migrations.Migration):
                 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                 ('slug', models.SlugField(help_text='This will be used for the name of the current PDF file.', verbose_name='Slug')),
                 ('name', models.CharField(max_length=255, verbose_name='Name')),
-                ('last_update', models.DateTimeField(blank=True, null=True, verbose_name='Date and time of the last update')),
-                ('current_file', models.FileField(blank=True, null=True, upload_to='chronos/plan_pdfs/', verbose_name='Current file')),
+                ('last_update', models.DateTimeField(blank=True, null=True, verbose_name='Date and time of the last update', editable=False)),
+                ('current_file', models.FileField(blank=True, null=True, upload_to='chronos/plan_pdfs/', verbose_name='Current file', editable=False)),
                 ('polymorphic_ctype', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='polymorphic_resint.livedocument_set+', to='contenttypes.contenttype')),
             ],
             options={