mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-15 17:52:26 -05:00
reformat
This commit is contained in:
@@ -7,8 +7,8 @@ Create Date: 2016-05-18 09:39:22.512042
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '0018_remove_subject_uniqueness'
|
||||
down_revision = '0017_add_failure_types'
|
||||
revision = "0018_remove_subject_uniqueness"
|
||||
down_revision = "0017_add_failure_types"
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@@ -16,11 +16,11 @@ import sqlalchemy as sa
|
||||
|
||||
def upgrade():
|
||||
### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_constraint('templates_subject_key', 'templates', type_='unique')
|
||||
op.drop_constraint("templates_subject_key", "templates", type_="unique")
|
||||
### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_unique_constraint('templates_subject_key', 'templates', ['subject'])
|
||||
op.create_unique_constraint("templates_subject_key", "templates", ["subject"])
|
||||
### end Alembic commands ###
|
||||
|
||||
Reference in New Issue
Block a user