From 9b25e2d3daefe60721ef233153bffeba44a95651 Mon Sep 17 00:00:00 2001 From: Manjinder Singh <49171515+jinder1s@users.noreply.github.com> Date: Thu, 1 Jul 2021 14:28:00 -0400 Subject: [PATCH] refactor: noop migration for testing (#28078) This is a noop migration for testing changes to the deployment pipeline. --- .../0011_noop_migration_to_test_rollback.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 openedx/core/djangoapps/oauth_dispatch/migrations/0011_noop_migration_to_test_rollback.py diff --git a/openedx/core/djangoapps/oauth_dispatch/migrations/0011_noop_migration_to_test_rollback.py b/openedx/core/djangoapps/oauth_dispatch/migrations/0011_noop_migration_to_test_rollback.py new file mode 100644 index 0000000000..698708b79f --- /dev/null +++ b/openedx/core/djangoapps/oauth_dispatch/migrations/0011_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', '0010_noop_migration_to_test_rollback'), + ] + + operations = [ + migrations.RunSQL(migrations.RunSQL.noop, reverse_sql=migrations.RunSQL.noop) + ]