-- -- packages/project-manager/sql/postgresql/project-manager-customize.sql -- -- @author jader@bread.com -- @creation-date 2003-12-05 -- -- this file is used to add custom columns to the projects table. -- you can then customize the columns shown -- if you do set this up, you need to set the parameter in the admin -- UI, so that the add-edit page will know that there is custom code, -- You'll need to create an add-edit-custom page, filling in the skeleton there -- you should use the content_type__create_attribute procedure to add -- in columns so that the views are correctly recreated. -- add in extra columns --select content_type__create_attribute( -- 'pm_project', -- 'customer_id', -- 'integer', -- 'Customer', -- 'Customers', -- null, -- null, -- 'integer constraint pm_project_customer_fk references organizations' --);