"""Add new features Revision ID: 6a841af4c236 Revises: 50157fcf55e4 Create Date: 2025-08-13 20:18:52.912339 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '6a841af4c236' down_revision = '50157fcf55e4' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('PaymentPlans', schema=None) as batch_op: batch_op.add_column(sa.Column('Stripe_Customer_ID', sa.String(length=50), nullable=True)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('PaymentPlans', schema=None) as batch_op: batch_op.drop_column('Stripe_Customer_ID') # ### end Alembic commands ###