mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 13:18:35 +00:00
25 lines
383 B
Python
25 lines
383 B
Python
"""merge D and F
|
|
|
|
Revision ID: 2b787cc265d8
|
|
Revises: 65f3fce6031a, 0c8a2f8db28c
|
|
Create Date: 2020-03-18 16:02:50.126232
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '2b787cc265d8'
|
|
down_revision = ('65f3fce6031a', '0c8a2f8db28c')
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|