final
All checks were successful
Build Docker / deploy (push) Successful in 39s
Build Docker / build (push) Successful in 28s

This commit is contained in:
2026-03-07 01:01:28 +03:00
parent 10fdda3ec1
commit 518ba194ae
3 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
"""empty message
Revision ID: 1e2bd98e74a5
Revises: 4ffe643b7d40
Create Date: 2026-03-07 00:44:25.427515
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '1e2bd98e74a5'
down_revision: Union[str, Sequence[str], None] = '4ffe643b7d40'
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! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###