From fdd057b2ad69c4848dd8eaefa8ac3693b01e3318 Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Wed, 30 Jun 2021 14:49:10 -0400 Subject: [PATCH] refactor: noop migration for testing (#28052) This is a noop migration for testing changes to the deployment pipeline. --- .../0010_noop_migration_to_test_rollback.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 openedx/core/djangoapps/oauth_dispatch/migrations/0010_noop_migration_to_test_rollback.py diff --git a/openedx/core/djangoapps/oauth_dispatch/migrations/0010_noop_migration_to_test_rollback.py b/openedx/core/djangoapps/oauth_dispatch/migrations/0010_noop_migration_to_test_rollback.py new file mode 100644 index 0000000000..d809c47c82 --- /dev/null +++ b/openedx/core/djangoapps/oauth_dispatch/migrations/0010_noop_migration_to_test_rollback.py @@ -0,0 +1,15 @@ +""" +Noop migration to test rollback +""" + +from django.db import migrations + +class Migration(migrations.Migration): + + dependencies = [ + ('oauth_dispatch', '0009_delete_enable_scopes_waffle_switch'), + ] + + operations = [ + migrations.RunSQL(migrations.RunSQL.noop, reverse_sql=migrations.RunSQL.noop) + ]