Index: openacs-4/packages/simulation/sql/postgresql/simulation-content-types-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/simulation/sql/postgresql/simulation-content-types-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/simulation/sql/postgresql/simulation-content-types-create.sql 17 Oct 2003 09:22:55 -0000 1.2 +++ openacs-4/packages/simulation/sql/postgresql/simulation-content-types-create.sql 17 Oct 2003 09:55:53 -0000 1.3 @@ -15,6 +15,16 @@ null -- name_method ); +select content_type__create_attribute( + 'sim_character', -- content_type + 'stylesheet', -- attribute_name + 'text', -- datatype + 'Stylesheet', -- pretty_name + 'Stylesheets', -- pretty_plural + 1, -- sort_order + null, -- default_value + 'text' -- column_spec +); @@ -30,8 +40,20 @@ null -- name_method ); +select content_type__create_attribute( + 'sim_prop', -- content_type + 'stylesheet', -- attribute_name + 'text', -- datatype + 'Stylesheet', -- pretty_name + 'Stylesheets', -- pretty_plural + 1, -- sort_order + null, -- default_value + 'text' -- column_spec +); + + -- sim_home select content_type__create_type( @@ -83,13 +105,7 @@ 'text', -- datatype 'Stylesheet', -- pretty_name 'Stylesheets', -- pretty_plural - 5, -- sort_order + 4, -- sort_order null, -- default_value 'text' -- column_spec ); - - - - - -