Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions common/djangoapps/util/tests/test_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,7 @@ class MigrationTests(TestCase):
"""

@unittest.skip(
"Need to skip as part of renaming a field in schedules app. This will be unskipped in DE-1825. ALSO need to "
"skip as part of renaming a field in the site_configuration app. This will be unskipped in DENG-18."
"Need to skip as part of renaming a field in schedules app. This will be unskipped in DE-1825."
)
@override_settings(MIGRATION_MODULES={})
def test_migrations_are_in_sync(self):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('site_configuration', '0006_copy_values_to_site_values'),
]

operations = [
migrations.RemoveField(
model_name='siteconfiguration',
name='values',
),
migrations.RemoveField(
model_name='siteconfigurationhistory',
name='values',
),
]