mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
update to correct error
This commit is contained in:
@@ -9,15 +9,15 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
revision = '0395_add_total_message_limit'
|
||||
down_revision = '0394_remove_contact_list'
|
||||
revision = "0395_add_total_message_limit"
|
||||
down_revision = "0394_remove_contact_list"
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.add_column('services', sa.Column('total_message_limit', sa.Integer))
|
||||
op.add_column('services_history', sa.Column('total_message_limit', sa.Integer))
|
||||
op.add_column("services", sa.Column("total_message_limit", sa.Integer))
|
||||
op.add_column("services_history", sa.Column("total_message_limit", sa.Integer))
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.drop_column('services', 'total_message_limit')
|
||||
op.drop_column('services_history', 'total_message_limit')
|
||||
op.drop_column("services", "total_message_limit")
|
||||
op.drop_column("services_history", "total_message_limit")
|
||||
|
||||
Reference in New Issue
Block a user