mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
25 lines
388 B
Python
25 lines
388 B
Python
"""fix_multiple_heads
|
|
|
|
Revision ID: 89bc7873a3e0
|
|
Revises: 0ec979123ba4, d7d747033183
|
|
Create Date: 2021-01-21 18:11:04.312259
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '89bc7873a3e0'
|
|
down_revision = ('0ec979123ba4', 'd7d747033183')
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|