diff --git a/colleges/migrations/0016_populate_colleges.py b/colleges/migrations/0016_populate_colleges.py
index 7960d80593300acc2f447f2bb4a095146eaf6d5a..b6e169d823196841dd423c1f8f696c5d70d72206 100644
--- a/colleges/migrations/0016_populate_colleges.py
+++ b/colleges/migrations/0016_populate_colleges.py
@@ -10,12 +10,11 @@ def populate_colleges(apps, schema_editor):
     College = apps.get_model('colleges.College')
 
     for af in AcademicField.objects.all():
-        if af.name != 'Multidisciplinary':
-            college, created = College.objects.get_or_create(
-                name=af.name,
-                acad_field=af,
-                order=1
-            )
+        college, created = College.objects.get_or_create(
+            name=af.name,
+            acad_field=af,
+            order=1
+        )
 
 
 class Migration(migrations.Migration):
diff --git a/journals/migrations/0093_journal_college.py b/journals/migrations/0093_journal_college.py
index 12c1526aa25f98af3e02605fd1d2bd9b3b8eaee4..9be5d90a39da85e28e5bd7992354a7b1e084660d 100644
--- a/journals/migrations/0093_journal_college.py
+++ b/journals/migrations/0093_journal_college.py
@@ -11,8 +11,10 @@ def populate_journal_college(apps, schema_editor):
         field_name = journal.name.split(' ')[1]
         if field_name != 'Selections':
             college = College.objects.get(name=field_name)
-            journal.college = college
-            journal.save()
+        else:
+            college = College.objects.get(name='Multidisciplinary')
+        journal.college = college
+        journal.save()
 
 
 class Migration(migrations.Migration):