53 lines
2.1 KiB
Python
53 lines
2.1 KiB
Python
"""Security Additions to Tenants
|
|
|
|
Revision ID: a8c1c8e9a31a
|
|
Revises: ac7753aa8fa3
|
|
Create Date: 2024-05-15 14:25:44.355580
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'a8c1c8e9a31a'
|
|
down_revision = 'ac7753aa8fa3'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('roles_users', schema=None) as batch_op:
|
|
batch_op.drop_constraint('roles_users_user_id_fkey', type_='foreignkey')
|
|
batch_op.drop_constraint('roles_users_role_id_fkey', type_='foreignkey')
|
|
batch_op.create_foreign_key(None, 'user', ['user_id'], ['id'], referent_schema='public', ondelete='CASCADE')
|
|
batch_op.create_foreign_key(None, 'role', ['role_id'], ['id'], referent_schema='public', ondelete='CASCADE')
|
|
|
|
with op.batch_alter_table('tenant', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('encrypted_api_key', sa.String(length=500), nullable=True))
|
|
|
|
with op.batch_alter_table('user', schema=None) as batch_op:
|
|
batch_op.drop_constraint('user_tenant_id_fkey', type_='foreignkey')
|
|
batch_op.create_foreign_key(None, 'tenant', ['tenant_id'], ['id'], referent_schema='public')
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('user', schema=None) as batch_op:
|
|
batch_op.drop_constraint(None, type_='foreignkey')
|
|
batch_op.create_foreign_key('user_tenant_id_fkey', 'tenant', ['tenant_id'], ['id'])
|
|
|
|
with op.batch_alter_table('tenant', schema=None) as batch_op:
|
|
batch_op.drop_column('encrypted_api_key')
|
|
|
|
with op.batch_alter_table('roles_users', schema=None) as batch_op:
|
|
batch_op.drop_constraint(None, type_='foreignkey')
|
|
batch_op.drop_constraint(None, type_='foreignkey')
|
|
batch_op.create_foreign_key('roles_users_role_id_fkey', 'role', ['role_id'], ['id'], ondelete='CASCADE')
|
|
batch_op.create_foreign_key('roles_users_user_id_fkey', 'user', ['user_id'], ['id'], ondelete='CASCADE')
|
|
|
|
# ### end Alembic commands ###
|