mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-02-23 23:18:15 +00:00
* Revert "Revert "Feature/event payloads (#393)"" This reverts commit 9bc4a68f2d0679f0625f8e01bf9af15008833daa. * Revert "Revert "poet not available in container"" This reverts commit 5c68e5817e72ee1aec6418c96f0afe115aee9f15. * Revert "Revert "Run event payloads data migration from background processor (#399)"" This reverts commit b04284ac9c52a913ce32d8e76aee3495ac6e2dbf. * Revert "Revert "using new spiff api to get info about events. w/ elizabeth"" This reverts commit f00e4b416cd978da979c510381f077dff9fe6c50. * Revert "Revert "fix tests for waiting_event_can_be_skipped"" This reverts commit de2ea98daa2c0f75dd12246588601bd33b64617b. * 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 ###
|