36 lines
687 B
Python
36 lines
687 B
Python
"""Add Financial Role
|
|
|
|
Revision ID: f0ab991a6411
|
|
Revises: 392d48aa045e
|
|
Create Date: 2024-11-20 14:30:19.068984
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'f0ab991a6411'
|
|
down_revision = '392d48aa045e'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
#
|
|
pass
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
# op.execute("""
|
|
# DELETE FROM public.role
|
|
# WHERE name = 'Tenant Financial';
|
|
# """)
|
|
pass
|
|
|
|
# ### end Alembic commands ###
|