"""init Revision ID: 6641523a6967 Revises: Create Date: 2025-08-08 11:20:09.064584+00:00 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '6641523a6967' down_revision = None branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('invoices', sa.Column('id', sa.UUID(), nullable=False), sa.Column('client_id', sa.UUID(), nullable=False), sa.Column('amount', sa.Numeric(precision=12, scale=2), nullable=False), sa.Column('currency', sa.String(length=3), nullable=False), sa.Column('status', sa.String(length=16), nullable=False), sa.Column('description', sa.String(length=500), nullable=True), sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=False), sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=False), sa.PrimaryKeyConstraint('id') ) op.create_index(op.f('ix_invoices_client_id'), 'invoices', ['client_id'], unique=False) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_index(op.f('ix_invoices_client_id'), table_name='invoices') op.drop_table('invoices') # ### end Alembic commands ###