Index: openacs-4/packages/acs-core-docs/www/object-system-design.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/object-system-design.html,v diff -u -r1.34.2.3 -r1.34.2.4 --- openacs-4/packages/acs-core-docs/www/object-system-design.html 3 Oct 2016 09:17:51 -0000 1.34.2.3 +++ openacs-4/packages/acs-core-docs/www/object-system-design.html 19 Nov 2016 09:21:54 -0000 1.34.2.4 @@ -260,11 +260,11 @@ form:
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),
@@ -337,7 +337,7 @@
acs_rel_types
. The key parts of this table look like this:
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),
@@ -858,4 +858,4 @@
on par with the old user/groups system in a more general way.Pete Su generated this document
from material culled from other documents by Michael Yoon, Richard Li and Rafael Schloming. But, any remaining lies
are his and his alone.
Document Revision # Action Taken, Notes When? By Whom? 0.1 Creation 9/09/2000 Pete Su 0.2 Edited for ACS 4 Beta 9/30/2000 Kai Wu 0.3 Edited for ACS 4.0.1, fixed some mistakes, removed use of term
-"OM" 11/07/2000 Pete Su
View comments on this page at openacs.org