25 lines
327 B
Python
25 lines
327 B
Python
|
|
"""merge heads
|
||
|
|
|
||
|
|
Revision ID: 695f07385773
|
||
|
|
Revises:
|
||
|
|
Create Date: 2025-11-19 15:53:58.880746
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision = '695f07385773'
|
||
|
|
down_revision = None
|
||
|
|
branch_labels = None
|
||
|
|
depends_on = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
pass
|