Set default value to 0 for assign_ts for backward-compatibility

This commit is contained in:
Andrii Shvaika 2023-03-08 15:19:18 +02:00
parent b81612e249
commit 85f317b99b
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ UPDATE tb_user SET additional_info = tb_user.additional_info::jsonb - 'userPassw
-- ALARM ASSIGN TO USER START -- ALARM ASSIGN TO USER START
ALTER TABLE alarm ADD COLUMN IF NOT EXISTS assign_ts BIGINT; ALTER TABLE alarm ADD COLUMN IF NOT EXISTS assign_ts BIGINT DEFAULT 0;
ALTER TABLE alarm ADD COLUMN IF NOT EXISTS assignee_id UUID; ALTER TABLE alarm ADD COLUMN IF NOT EXISTS assignee_id UUID;
CREATE INDEX IF NOT EXISTS idx_alarm_tenant_assignee_created_time ON alarm(tenant_id, assignee_id, created_time DESC); CREATE INDEX IF NOT EXISTS idx_alarm_tenant_assignee_created_time ON alarm(tenant_id, assignee_id, created_time DESC);

View File

@ -52,7 +52,7 @@ CREATE TABLE IF NOT EXISTS alarm (
propagate boolean, propagate boolean,
severity varchar(255), severity varchar(255),
start_ts bigint, start_ts bigint,
assign_ts bigint, assign_ts bigint DEFAULT 0,
assignee_id uuid, assignee_id uuid,
tenant_id uuid, tenant_id uuid,
customer_id uuid, customer_id uuid,