-- TODO: -- -- which items in this data model need to use the content repository? -- need to add in workflow (for status among other things) -- need to take into account acs-rels -- add categories to projects -- -- packages/test-project/sql/postgresql/test-project-table-create.sql -- -- @author jader@bread.com and everyone else involved in this thread: http://openacs.org/forums/message-view?message_id=90742 -- @creation-date 2003-05-15 -- create table pm_project ( project_id integer constraint project_manager_id_fk references acs_objects(object_id) constraint pm_project_id_pk primary key, project_name varchar(255) constraint pm_project_name_nn not null, -- a user-specified project_code varchar(255), -- for subprojects parent_project_id integer constraint pm_project_parent_project_id_fk references pm_project, goal varchar(4000), description varchar(4000), -- is the deadline computed from the end date, or from -- today? -- e = end, t = today deadline_scheduling char(1) default 't' constraint pm_project_dline_scheduling_ck check (deadline_scheduling in ('t','e')), planned_start_date timestamptz, planned_end_date timestamptz, actual_start_date timestamptz, actual_end_date timestamptz, ongoing_p char(1) default 'f' constraint pm_project_ongoing_p_ck check (ongoing_p in ('t','f')) ); create function inline_0 () returns integer as ' begin PERFORM acs_object_type__create_type ( ''pm_project'', -- object_type ''Project'', -- pretty_name ''Projects'', -- pretty_plural ''acs_object'', -- supertype ''pm_project'', -- table_name ''project_id'', -- id_column null, -- package_name ''f'', -- abstract_p null, -- type_extension_table ''pm_project__name'' -- name_method ); return 0; end;' language 'plpgsql'; select inline_0 (); drop function inline_0 ();