mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 18:44:14 +00:00
75e6007ef3
* multiinstance ui * fix black * added migration merge file --------- Co-authored-by: burnettk <burnettk@users.noreply.github.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com>
25 lines
387 B
Python
25 lines
387 B
Python
"""merging two heads
|
|
|
|
Revision ID: 57df21dc569d
|
|
Revises: 5579975401dd, f04cbd9f43ec
|
|
Create Date: 2023-09-07 13:54:23.061873
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '57df21dc569d'
|
|
down_revision = ('5579975401dd', 'f04cbd9f43ec')
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|