25 lines
437 B
Python
25 lines
437 B
Python
|
|
"""Merge all heads
|
||
|
|
|
||
|
|
Revision ID: 63d5e2868229
|
||
|
|
Revises: fix_audit_log_target_id, 524e3e71f8f0, a77396ec53ac
|
||
|
|
Create Date: 2025-11-22 19:32:09.473945
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision = '63d5e2868229'
|
||
|
|
down_revision = ('fix_audit_log_target_id', '524e3e71f8f0', 'a77396ec53ac')
|
||
|
|
branch_labels = None
|
||
|
|
depends_on = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
pass
|