2023-11-24 14:39:34 +05:30
|
|
|
CREATE TABLE IF NOT EXISTS rca_input (
|
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
|
incident_id integer NOT NULL REFERENCES incident(id),
|
|
|
|
|
document_type character varying(100),
|
|
|
|
|
identifier_keys text[] DEFAULT '{}'::text[],
|
|
|
|
|
provider_name character varying(100),
|
|
|
|
|
is_active boolean DEFAULT true,
|
|
|
|
|
created_at timestamp without time zone,
|
2023-11-24 16:20:47 +05:30
|
|
|
updated_at timestamp without time zone
|
2023-11-24 14:39:34 +05:30
|
|
|
);
|