* INFRA-3664 : Make get users in conversation api more performant * INFRA-3664 : Add apis for incident user sync and get users in incident performance improvements * INFRA-3664 : Self review * INFRA-3664 : Add migration script * INFRA-3664 : Review comments * INFRA-3664 : Constant chanes * INFRA-3664 : Add rate limit constants * INFRA-3664 : Add rate limit constants * INFRA-3664 : Fix failing tests * INFRA-3664 : Add UT's
8 lines
213 B
SQL
8 lines
213 B
SQL
CREATE TABLE IF NOT EXISTS request_status (
|
|
id SERIAL PRIMARY KEY,
|
|
request_id UUID DEFAULT gen_random_uuid(),
|
|
request_type VARCHAR(255) NOT NULL,
|
|
status VARCHAR(255) NOT NULL,
|
|
message JSONB
|
|
);
|