29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: cab9b8b4d05b
|
|
Revises: 1edc2e2c93cd
|
|
Create Date: 2025-06-09 04:42:01.258302
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'cab9b8b4d05b'
|
|
down_revision = '1edc2e2c93cd'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|