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