diff --git a/submissions/migrations/0059_auto_20190912_0906.py b/submissions/migrations/0059_auto_20190912_0906.py
new file mode 100644
index 0000000000000000000000000000000000000000..c6705a7392c7177e153e17f3971d07f9fe129ab5
--- /dev/null
+++ b/submissions/migrations/0059_auto_20190912_0906.py
@@ -0,0 +1,19 @@
+# Generated by Django 2.1.8 on 2019-09-12 07:06
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('submissions', '0058_auto_20190522_1120'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='submission',
+            name='proceedings',
+            field=models.ForeignKey(blank=True, help_text="Don't find the Proceedings you are looking for? Ask the conference organizers to contact our admin at admin@scipost.org to set things up.", null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='submissions', to='proceedings.Proceedings'),
+        ),
+    ]
diff --git a/submissions/models.py b/submissions/models.py
index f363882043ea02bdc31ea68697e420d03fec2c92..fcfb1e36f4b8ae3069023061c73c3448869f29bb 100644
--- a/submissions/models.py
+++ b/submissions/models.py
@@ -100,7 +100,11 @@ class Submission(models.Model):
 
     submitted_to = models.ForeignKey('journals.Journal', on_delete=models.CASCADE)
     proceedings = models.ForeignKey('proceedings.Proceedings', null=True, blank=True,
-                                    on_delete=models.SET_NULL, related_name='submissions')
+                                    on_delete=models.SET_NULL, related_name='submissions',
+                                    help_text=(
+                                        'Don\'t find the Proceedings you are looking for? '
+                                        'Ask the conference organizers to contact our admin '
+                                        'at admin@scipost.org to set things up.'))
     title = models.CharField(max_length=300)
 
     # Authors which have been mapped to contributors: