refactor: noop migration for testing (#28078)

This is a noop migration for testing changes
to the deployment pipeline.
This commit is contained in:
Manjinder Singh
2021-07-01 14:28:00 -04:00
committed by GitHub
parent 741f0b6a88
commit 9b25e2d3da

View File

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