25 lines
443 B
Python
25 lines
443 B
Python
|
|
"""merge ticket_reply_table head
|
||
|
|
|
||
|
|
Revision ID: f2e41c20d491
|
||
|
|
Revises: 08879d4d0318, 20251211_create_ticket_reply_table
|
||
|
|
Create Date: 2025-12-11 16:07:32.111442
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision = 'f2e41c20d491'
|
||
|
|
down_revision = ('08879d4d0318', '20251211_create_ticket_reply_table')
|
||
|
|
branch_labels = None
|
||
|
|
depends_on = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
pass
|