diff --git a/common/djangoapps/track/migrations/0002_delete_trackinglog.py b/common/djangoapps/track/migrations/0002_delete_trackinglog.py
new file mode 100644
index 0000000000000000000000000000000000000000..3d59192f3ddd9a34d33c32b198afe9e6aac9ba9c
--- /dev/null
+++ b/common/djangoapps/track/migrations/0002_delete_trackinglog.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.27 on 2020-02-04 21:16
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('track', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.DeleteModel(
+            name='TrackingLog',
+        ),
+    ]
diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py
index b64e69768a1a8648f1f90b861c5fb14d1b3e800b..8fdcf40b9f06c0de2176359fc7df0a18c8ae5afc 100644
--- a/common/djangoapps/util/tests/test_db.py
+++ b/common/djangoapps/util/tests/test_db.py
@@ -223,7 +223,6 @@ class MigrationTests(TestCase):
     """
 
     @unittest.skip("Need to skip as part of renaming a field in schedules app. This will be unskipped in DE-1825")
-    @unittest.skip("This is also being skipped as part of the dropping of tracking tables for DEPR-57")
     @override_settings(MIGRATION_MODULES={})
     def test_migrations_are_in_sync(self):
         """