diff --git a/core/migrations/0002_auto_20191012_2215.py b/core/migrations/0002_auto_20191012_2215.py
deleted file mode 100644
index fdd7a86a203bec3421ef8008ad89959bfb1d965a..0000000000000000000000000000000000000000
--- a/core/migrations/0002_auto_20191012_2215.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.17 on 2019-10-12 15:15
-from __future__ import unicode_literals
-
-import core.models.accounts
-import django.core.validators
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('core', '0001_initial'),
-    ]
-
-    operations = [
-        migrations.AlterField(
-            model_name='student',
-            name='photo',
-            field=models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_student_photo_file_path, validators=[django.core.validators.FileExtensionValidator([b'jpg', b'jpeg', b'png'])]),
-        ),
-        migrations.AlterField(
-            model_name='student',
-            name='resume',
-            field=models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_student_resume_file_path, validators=[django.core.validators.FileExtensionValidator([b'pdf'])]),
-        ),
-    ]
diff --git a/core/migrations/0002_auto_20191012_2328.py b/core/migrations/0002_auto_20191012_2328.py
deleted file mode 100644
index ee3e65f4a9f92b97a677ed80ce951426e56554f4..0000000000000000000000000000000000000000
--- a/core/migrations/0002_auto_20191012_2328.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.17 on 2019-10-12 16:28
-from __future__ import unicode_literals
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('core', '0001_initial'),
-    ]
-
-    operations = [
-        migrations.AddField(
-            model_name='vacancy',
-            name='benefits',
-            field=models.TextField(blank=True),
-        ),
-        migrations.AddField(
-            model_name='vacancy',
-            name='max_accepted_applicants',
-            field=models.IntegerField(default=3),
-            preserve_default=False,
-        ),
-    ]
diff --git a/core/migrations/0003_merge_20191012_2251.py b/core/migrations/0003_merge_20191012_2251.py
deleted file mode 100644
index 413b589e98374c4a93fe75201b6d3a2a19b2a987..0000000000000000000000000000000000000000
--- a/core/migrations/0003_merge_20191012_2251.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.17 on 2019-10-12 15:51
-from __future__ import unicode_literals
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('core', '0002_auto_20191012_2215'),
-        ('core', '0002_vacancy_benefits'),
-    ]
-
-    operations = [
-    ]