Index: openacs-4/packages/acs-core-docs/www/xml/kernel/object-system-design.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/kernel/object-system-design.xml,v diff -u -N -r1.8 -r1.8.14.1 --- openacs-4/packages/acs-core-docs/www/xml/kernel/object-system-design.xml 17 Jul 2006 05:38:38 -0000 1.8 +++ openacs-4/packages/acs-core-docs/www/xml/kernel/object-system-design.xml 5 Jul 2016 16:41:10 -0000 1.8.14.1 @@ -557,11 +557,11 @@ create table acs_object_types ( - object_type varchar(100) not null primary key, + object_type varchar(1000) not null primary key, supertype references acs_object_types (object_type), abstract_p char(1) default 'f' not null - pretty_name varchar(100) not null unique, - pretty_plural varchar(100) not null unique, + pretty_name varchar(1000) not null unique, + pretty_plural varchar(1000) not null unique, table_name varchar(30) not null unique, id_column varchar(30) not null, name_method varchar(30), @@ -685,7 +685,7 @@ create table acs_rel_types ( - rel_type varchar(100) not null + rel_type varchar(1000) not null references acs_object_types(object_type), object_type_one not null references acs_object_types (object_type),