Merge pull request #25223 from edx/dsheraz/PROD-2152-drop-video-pipeline-model

drop video pipeline integration model with migration
This commit is contained in:
Syed Muhammad Dawoud Sheraz Ali
2020-10-05 20:12:13 +05:00
committed by GitHub
2 changed files with 16 additions and 1 deletions

View File

@@ -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.

View File

@@ -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',
),
]