from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import mysql revision = 'd9aff6c5f0d4' down_revision = '08e2f866e131' branch_labels = None depends_on = None def upgrade() -> None: bind = op.get_bind() if bind.dialect.name == 'mysql': op.execute("ALTER TABLE payments MODIFY COLUMN payment_method ENUM('cash', 'credit_card', 'debit_card', 'bank_transfer', 'e_wallet', 'stripe', 'paypal') NOT NULL") else: pass def downgrade() -> None: bind = op.get_bind() if bind.dialect.name == 'mysql': op.execute("ALTER TABLE payments MODIFY COLUMN payment_method ENUM('cash', 'credit_card', 'debit_card', 'bank_transfer', 'e_wallet', 'stripe') NOT NULL")