forked from DigiFi/digifi-BankToProductCore
1795db35be
This reverts commit 8bb5ce69e2.
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
"""empty message
|
|
|
|
Revision ID: 1696ee63c28a
|
|
Revises: b54422fb31e0
|
|
Create Date: 2025-06-18 12:28:23.942143
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '1696ee63c28a'
|
|
down_revision = 'b54422fb31e0'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('salaries',
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
sa.Column('customer_id', sa.String(length=50), nullable=False),
|
|
sa.Column('account_type', sa.String(length=50), nullable=True),
|
|
sa.Column('status', sa.String(length=20), nullable=True),
|
|
sa.Column('amount', sa.Float(), nullable=False),
|
|
sa.Column('salary_date', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
|
|
sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
|
|
sa.Column('updated_at', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
with op.batch_alter_table('repayments', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('initiated_by', sa.String(length=50), nullable=True))
|
|
batch_op.add_column(sa.Column('salary_amount', sa.Float(), nullable=True))
|
|
|
|
with op.batch_alter_table('repayments_data', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('balance', sa.Float(), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('repayments_data', schema=None) as batch_op:
|
|
batch_op.drop_column('balance')
|
|
|
|
with op.batch_alter_table('repayments', schema=None) as batch_op:
|
|
batch_op.drop_column('salary_amount')
|
|
batch_op.drop_column('initiated_by')
|
|
|
|
op.drop_table('salaries')
|
|
# ### end Alembic commands ###
|