Add mostly-working elements of the data-store, compare with dev to see why db is not working after running tests
This commit is contained in:
parent
245124779e
commit
69fe55aa56
|
@ -0,0 +1,32 @@
|
||||||
|
"""empty message
|
||||||
|
|
||||||
|
Revision ID: 0718ad13e5f3
|
||||||
|
Revises: 69081f1ff387
|
||||||
|
Create Date: 2020-11-06 11:08:33.657440
|
||||||
|
|
||||||
|
"""
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '0718ad13e5f3'
|
||||||
|
down_revision = '69081f1ff387'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.create_table('data_store',
|
||||||
|
sa.Column('key', sa.String(), nullable=False),
|
||||||
|
sa.Column('value', sa.String(), nullable=True),
|
||||||
|
sa.PrimaryKeyConstraint('key')
|
||||||
|
)
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.drop_table('data_store')
|
||||||
|
# ### end Alembic commands ###
|
|
@ -0,0 +1,36 @@
|
||||||
|
"""add columns
|
||||||
|
|
||||||
|
Revision ID: e0dfdbfd6f69
|
||||||
|
Revises: 0718ad13e5f3
|
||||||
|
Create Date: 2020-11-09 08:33:04.585139
|
||||||
|
|
||||||
|
"""
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = 'e0dfdbfd6f69'
|
||||||
|
down_revision = '0718ad13e5f3'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.add_column('data_store', sa.Column('spec_id', sa.String(), nullable=True))
|
||||||
|
op.add_column('data_store', sa.Column('study_id', sa.Integer(), nullable=True))
|
||||||
|
op.add_column('data_store', sa.Column('task_id', sa.String(), nullable=True))
|
||||||
|
op.add_column('data_store', sa.Column('user_id', sa.String(), nullable=True))
|
||||||
|
op.add_column('data_store', sa.Column('workflow_id', sa.Integer(), nullable=True))
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.drop_column('data_store', 'workflow_id')
|
||||||
|
op.drop_column('data_store', 'user_id')
|
||||||
|
op.drop_column('data_store', 'task_id')
|
||||||
|
op.drop_column('data_store', 'study_id')
|
||||||
|
op.drop_column('data_store', 'spec_id')
|
||||||
|
# ### end Alembic commands ###
|
|
@ -0,0 +1,78 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0kmksnn" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
|
||||||
|
<bpmn:process id="Process_0exnnpv" isExecutable="true">
|
||||||
|
<bpmn:startEvent id="StartEvent_1">
|
||||||
|
<bpmn:outgoing>SequenceFlow_1nfe5m9</bpmn:outgoing>
|
||||||
|
</bpmn:startEvent>
|
||||||
|
<bpmn:sequenceFlow id="SequenceFlow_1nfe5m9" sourceRef="StartEvent_1" targetRef="Task_Script_Load_Study_Sponsors" />
|
||||||
|
<bpmn:scriptTask id="Task_Script_Load_Study_Sponsors" name="Load Study Sponsors">
|
||||||
|
<bpmn:incoming>SequenceFlow_1nfe5m9</bpmn:incoming>
|
||||||
|
<bpmn:outgoing>SequenceFlow_1bqiin0</bpmn:outgoing>
|
||||||
|
<bpmn:script>sponsors = study_info('sponsors')</bpmn:script>
|
||||||
|
</bpmn:scriptTask>
|
||||||
|
<bpmn:sequenceFlow id="SequenceFlow_1bqiin0" sourceRef="Task_Script_Load_Study_Sponsors" targetRef="Activity_0cm6tn2" />
|
||||||
|
<bpmn:endEvent id="EndEvent_171dj09">
|
||||||
|
<bpmn:incoming>Flow_0g9waf3</bpmn:incoming>
|
||||||
|
</bpmn:endEvent>
|
||||||
|
<bpmn:sequenceFlow id="Flow_09cika8" sourceRef="Activity_0cm6tn2" targetRef="Activity_0d8iftx" />
|
||||||
|
<bpmn:scriptTask id="Activity_0cm6tn2" name="setval">
|
||||||
|
<bpmn:incoming>SequenceFlow_1bqiin0</bpmn:incoming>
|
||||||
|
<bpmn:outgoing>Flow_09cika8</bpmn:outgoing>
|
||||||
|
<bpmn:script>study_data_set('testme','newval')</bpmn:script>
|
||||||
|
</bpmn:scriptTask>
|
||||||
|
<bpmn:sequenceFlow id="Flow_1oeqjuy" sourceRef="Activity_0d8iftx" targetRef="Activity_1yup9u7" />
|
||||||
|
<bpmn:scriptTask id="Activity_0d8iftx" name="getval">
|
||||||
|
<bpmn:incoming>Flow_09cika8</bpmn:incoming>
|
||||||
|
<bpmn:outgoing>Flow_1oeqjuy</bpmn:outgoing>
|
||||||
|
<bpmn:script>out = study_data_get('testme','bogus')</bpmn:script>
|
||||||
|
</bpmn:scriptTask>
|
||||||
|
<bpmn:sequenceFlow id="Flow_0g9waf3" sourceRef="Activity_1yup9u7" targetRef="EndEvent_171dj09" />
|
||||||
|
<bpmn:scriptTask id="Activity_1yup9u7" name="reset value">
|
||||||
|
<bpmn:incoming>Flow_1oeqjuy</bpmn:incoming>
|
||||||
|
<bpmn:outgoing>Flow_0g9waf3</bpmn:outgoing>
|
||||||
|
<bpmn:script>study_data_set('testme','badval')</bpmn:script>
|
||||||
|
</bpmn:scriptTask>
|
||||||
|
</bpmn:process>
|
||||||
|
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||||
|
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_0exnnpv">
|
||||||
|
<bpmndi:BPMNEdge id="SequenceFlow_1bqiin0_di" bpmnElement="SequenceFlow_1bqiin0">
|
||||||
|
<di:waypoint x="370" y="117" />
|
||||||
|
<di:waypoint x="440" y="117" />
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="SequenceFlow_1nfe5m9_di" bpmnElement="SequenceFlow_1nfe5m9">
|
||||||
|
<di:waypoint x="215" y="117" />
|
||||||
|
<di:waypoint x="270" y="117" />
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
|
||||||
|
<dc:Bounds x="179" y="99" width="36" height="36" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="ScriptTask_1mp6xid_di" bpmnElement="Task_Script_Load_Study_Sponsors">
|
||||||
|
<dc:Bounds x="270" y="77" width="100" height="80" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="EndEvent_171dj09_di" bpmnElement="EndEvent_171dj09">
|
||||||
|
<dc:Bounds x="932" y="99" width="36" height="36" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge id="Flow_09cika8_di" bpmnElement="Flow_09cika8">
|
||||||
|
<di:waypoint x="540" y="117" />
|
||||||
|
<di:waypoint x="600" y="117" />
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape id="Activity_0wnwluq_di" bpmnElement="Activity_0cm6tn2">
|
||||||
|
<dc:Bounds x="440" y="77" width="100" height="80" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge id="Flow_1oeqjuy_di" bpmnElement="Flow_1oeqjuy">
|
||||||
|
<di:waypoint x="700" y="117" />
|
||||||
|
<di:waypoint x="760" y="117" />
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape id="Activity_0cq37mm_di" bpmnElement="Activity_0d8iftx">
|
||||||
|
<dc:Bounds x="600" y="77" width="100" height="80" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge id="Flow_0g9waf3_di" bpmnElement="Flow_0g9waf3">
|
||||||
|
<di:waypoint x="860" y="117" />
|
||||||
|
<di:waypoint x="932" y="117" />
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape id="Activity_0cj83fx_di" bpmnElement="Activity_1yup9u7">
|
||||||
|
<dc:Bounds x="760" y="77" width="100" height="80" />
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
</bpmndi:BPMNPlane>
|
||||||
|
</bpmndi:BPMNDiagram>
|
||||||
|
</bpmn:definitions>
|
Loading…
Reference in New Issue