refactor: noop migration for testing (#28150)

This is a noop migration for testing changes
to the deployment pipeline.

This is a copy of: #28078
This commit is contained in:
Manjinder Singh
2021-07-12 11:44:38 -04:00
committed by GitHub
parent 23f0fc489f
commit 1a026c5e15

View File

@@ -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)
]