Add db migration script of action status code for POSTRESQL databases. (#1291)

Signed-off-by: Michael Herdt <Michael.Herdt@bosch.io>

Signed-off-by: Michael Herdt <Michael.Herdt@bosch.io>
This commit is contained in:
Michael Herdt
2022-10-26 11:17:38 +02:00
committed by GitHub
parent afa1e4be21
commit 0e4eb111f2

View File

@@ -0,0 +1,4 @@
ALTER TABLE sp_action_status ADD code INTEGER;
CREATE INDEX sp_idx_action_status_03
ON sp_action_status
USING BTREE (tenant, code);