30 lines
716 B
Python
30 lines
716 B
Python
"""新增服务器上传素材记录表
|
|
|
|
Revision ID: 08749ddd1414
|
|
Revises: 287c6c064c5d
|
|
Create Date: 2026-06-22 09:51:39.656397
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '08749ddd1414'
|
|
down_revision: Union[str, None] = '287c6c064c5d'
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|