Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as SQL by sankar ( 9 years ago )
CREATE TABLE public.committee_formation
(
id integer NOT NULL DEFAULT nextval('committee_formation_id_seq'::regclass),
create_date timestamp without time zone, -- Created on
write_uid integer, -- Last Updated by
create_uid integer, -- Created by
message_last_post timestamp without time zone, -- Last Message Date
state character varying, -- Status
description text, -- Description
task_accom text, -- Task to Accomplish
purpose character varying, -- Purpose
write_date timestamp without time zone, -- Last Updated on
date date, -- Date
committee_type character varying, -- Committee Type
CONSTRAINT committee_formation_pkey PRIMARY KEY (id),
CONSTRAINT committee_formation_create_uid_fkey FOREIGN KEY (create_uid)
REFERENCES public.res_users (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE SET NULL,
CONSTRAINT committee_formation_write_uid_fkey FOREIGN KEY (write_uid)
REFERENCES public.res_users (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE SET NULL
)
WITH (
OIDS=FALSE
);
Revise this Paste