From ad748d98eb9537e29f43c5926d69b81f4497b3b6 Mon Sep 17 00:00:00 2001 From: DawoudSheraz Date: Mon, 5 Oct 2020 10:45:52 +0500 Subject: [PATCH] drop video pipeline integration model with migration --- common/djangoapps/util/tests/test_db.py | 1 - .../0007_delete_videopipelineintegration.py | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 openedx/core/djangoapps/video_pipeline/migrations/0007_delete_videopipelineintegration.py diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py index c68f6aa1b4..108b66a827 100644 --- a/common/djangoapps/util/tests/test_db.py +++ b/common/djangoapps/util/tests/test_db.py @@ -198,7 +198,6 @@ class MigrationTests(TestCase): """ @override_settings(MIGRATION_MODULES={}) - @unittest.skip("Skipping temporarily as part of PROD-2152 to remove VEDA code from platform") def test_migrations_are_in_sync(self): """ Tests that the migration files are in sync with the models. diff --git a/openedx/core/djangoapps/video_pipeline/migrations/0007_delete_videopipelineintegration.py b/openedx/core/djangoapps/video_pipeline/migrations/0007_delete_videopipelineintegration.py new file mode 100644 index 0000000000..a69030065f --- /dev/null +++ b/openedx/core/djangoapps/video_pipeline/migrations/0007_delete_videopipelineintegration.py @@ -0,0 +1,16 @@ +# Generated by Django 2.2.16 on 2020-10-05 05:42 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('video_pipeline', '0006_remove_vempipelineintegration_vem_enabled_courses_percentage'), + ] + + operations = [ + migrations.DeleteModel( + name='VideoPipelineIntegration', + ), + ]