refactor: noop migration for testing (#28052)
This is a noop migration for testing changes to the deployment pipeline.
This commit is contained in:
@@ -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)
|
||||
]
|
||||
Reference in New Issue
Block a user