We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9277ddb commit 3bd5d4fCopy full SHA for 3bd5d4f
3 files changed
policyengine_api/data/initialise.sql
@@ -146,7 +146,7 @@ CREATE TABLE IF NOT EXISTS report_output_runs (
146
status VARCHAR(32) NOT NULL,
147
output JSON DEFAULT NULL,
148
error_message TEXT DEFAULT NULL,
149
- trigger VARCHAR(32) NOT NULL,
+ trigger_type VARCHAR(32) NOT NULL,
150
requested_at DATETIME DEFAULT NULL,
151
started_at DATETIME DEFAULT NULL,
152
finished_at DATETIME DEFAULT NULL,
@@ -173,7 +173,7 @@ CREATE TABLE IF NOT EXISTS simulation_runs (
173
174
175
176
177
178
179
policyengine_api/data/initialise_local.sql
@@ -158,7 +158,7 @@ CREATE TABLE IF NOT EXISTS report_output_runs (
158
159
160
161
162
163
164
@@ -185,7 +185,7 @@ CREATE TABLE IF NOT EXISTS simulation_runs (
185
186
187
188
189
190
191
tests/unit/data/test_run_schema.py
@@ -32,7 +32,7 @@ def test_stage_one_run_schema_is_initialized_in_local_test_db(test_db):
32
"id",
33
"report_output_id",
34
"run_sequence",
35
- "trigger",
+ "trigger_type",
36
"report_spec_snapshot_json",
37
"country_package_version",
38
"policyengine_version",
@@ -52,7 +52,7 @@ def test_stage_one_run_schema_is_initialized_in_local_test_db(test_db):
52
"report_output_run_id",
53
"input_position",
54
55
56
"simulation_spec_snapshot_json",
57
58
0 commit comments