mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-13 19:15:31 +00:00
9313a9f73a
* Revert "Revert "Feature/event payloads (#393)"" This reverts commit 95fafb7af118cbe81ca20600bbb83e54e0936a5a. * Revert "Revert "poet not available in container"" This reverts commit 140220498c284163dc02f8075fac949dff4de9e5. * Revert "Revert "Run event payloads data migration from background processor (#399)"" This reverts commit 2afced3a51cda18491bc23b344bf2bada41393d5. * Revert "Revert "using new spiff api to get info about events. w/ elizabeth"" This reverts commit af857fee229fc89824e45a5d36ab0178e284ed44. * Revert "Revert "fix tests for waiting_event_can_be_skipped"" This reverts commit 886e6bd42a94390bf4d863ec79bff0a3831f6fcf. * push image for preview env * default scripts to localhost w/ burnettk * use the bugfix/update-split-task-inputs spiffworkflow branch w/ burnettk * removed debug json files * use main for spiffworkflow * do not attempt to highlight non-diagram boundary items w/ burnettk * updated SpiffWorkflow to fix multiple signal event issue w/ burnettk --------- Co-authored-by: burnettk <burnettk@users.noreply.github.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com>
33 lines
867 B
Python
33 lines
867 B
Python
"""empty message
|
|
|
|
Revision ID: 214e0c5fb418
|
|
Revises: 64adf34a98db
|
|
Create Date: 2023-07-11 14:52:15.825136
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '214e0c5fb418'
|
|
down_revision = '64adf34a98db'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('message_instance_correlation_rule', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('correlation_key_names', sa.JSON(), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('message_instance_correlation_rule', schema=None) as batch_op:
|
|
batch_op.drop_column('correlation_key_names')
|
|
|
|
# ### end Alembic commands ###
|