e60489715a
Client endpoint - GET & POST implemented
33 lines
755 B
Python
33 lines
755 B
Python
"""Checking for updates
|
|
|
|
Revision ID: e8c4300db3cb
|
|
Revises: bfb086d8d500
|
|
Create Date: 2025-06-08 19:06:55.200977
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = 'e8c4300db3cb'
|
|
down_revision: Union[str, None] = 'bfb086d8d500'
|
|
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 ###
|