TP-43103 : Add houston user columns (#256)

* added new columns in houston user table

* added is archived column
This commit is contained in:
Gullipalli Chetan Kumar
2023-10-20 13:20:33 +05:30
committed by GitHub
parent 6b44ec9ec3
commit cd207a29c0

View File

@@ -1,2 +1,8 @@
ALTER TABLE incident_channel
ADD COLUMN IF NOT EXISTS is_archived boolean;
ALTER TABLE IF EXISTS houston_user
ADD COLUMN IF NOT EXISTS is_bot boolean,
ADD COLUMN IF NOT EXISTS email character varying(255),
ADD COLUMN IF NOT EXISTS real_name character varying(100),
ADD COLUMN IF NOT EXISTS image character varying(500);