32 lines
808 B
Python
32 lines
808 B
Python
"""added new enums for invoice
|
|
|
|
Revision ID: 41a6b57158ea
|
|
Revises: 92ae4c5060c4
|
|
Create Date: 2026-02-15 13:44:11.676492
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "41a6b57158ea"
|
|
down_revision: Union[str, Sequence[str], None] = "92ae4c5060c4"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""Upgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.execute("ALTER TYPE invoicestatus ADD VALUE 'RECEIVED'")
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""Downgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|