drop precentage column from VemPipelineIntegration model
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user