refactor: noop migration for testing (#28052)

This is a noop migration for testing changes
to the deployment pipeline.
This commit is contained in:
Robert Raposa
2021-06-30 14:49:10 -04:00
committed by GitHub
parent 52ab785764
commit fdd057b2ad

View File

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