drop precentage column from VemPipelineIntegration model

This commit is contained in:
DawoudSheraz
2020-08-07 13:09:48 +05:00
parent 2a7553c1a7
commit 1947f2105b
2 changed files with 17 additions and 3 deletions

View File

@@ -198,9 +198,6 @@ class MigrationTests(TestCase):
"""
@override_settings(MIGRATION_MODULES={})
@unittest.skip(
"Temporary skip for https://openedx.atlassian.net/browse/PROD-1886 where a column is to be removed"
)
def test_migrations_are_in_sync(self):
"""
Tests that the migration files are in sync with the models.

View File

@@ -0,0 +1,17 @@
# Generated by Django 2.2.14 on 2020-08-07 08:08
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('video_pipeline', '0005_add_vem_course_percentage'),
]
operations = [
migrations.RemoveField(
model_name='vempipelineintegration',
name='vem_enabled_courses_percentage',
),
]