Add independent payment-service (port 8012, payment_db) with foundation licensing, BYO-PSP, merchant accounts, idempotent requests, callbacks, and immutable ledger. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
293 B
Python
12 lines
293 B
Python
from alembic import op
|
|
from app.core.database import Base
|
|
import app.models
|
|
revision="0001_initial"
|
|
down_revision=None
|
|
branch_labels=None
|
|
depends_on=None
|
|
def upgrade():
|
|
Base.metadata.create_all(bind=op.get_bind())
|
|
def downgrade():
|
|
Base.metadata.drop_all(bind=op.get_bind())
|