Skip to content
Snippets Groups Projects
Unverified Commit 02d89133 authored by Troy Sankey's avatar Troy Sankey Committed by GitHub
Browse files

Merge pull request #22753 from edx/juliasq/rename_site_configuration_siteconfiguration_values_3

Rename values in SiteConfiguration/History (3/3)
parents b43a01f0 4444ffbf
No related branches found
No related tags found
No related merge requests found
......@@ -198,8 +198,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):
......
# -*- 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',
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment