|
From: Chris W. <la...@us...> - 2001-11-26 06:28:59
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/struct In directory usw-pr-cvs1:/tmp/cvs-serv15086/struct Modified Files: page.sql Log Message: added 'storage' and 'content_location' fields, removed 'is_file' field Index: page.sql =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/struct/page.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** page.sql 2001/10/24 20:55:37 1.2 --- page.sql 2001/11/26 06:28:56 1.3 *************** *** 1,17 **** CREATE TABLE page ( ! location varchar(150) not null, ! directory varchar(150) null, ! title varchar(250) null, ! author varchar(200) null, ! keywords varchar(75) null, ! boxes varchar(75) null, ! template_parse char(3) default 'yes', ! main_template varchar(40) null, ! active_on datetime null, ! expires_on datetime null, ! is_active char(3) default 'no', ! is_file char(3) default 'no', ! mime_type varchar(30) null, ! notes text null, ! primary key ( location ) ) --- 1,18 ---- CREATE TABLE page ( ! location varchar(150) not null, ! directory varchar(150) null, ! title varchar(250) null, ! author varchar(200) null, ! keywords varchar(75) null, ! boxes varchar(75) null, ! template_parse char(3) default 'yes', ! main_template varchar(40) null, ! active_on datetime null, ! expires_on datetime null, ! is_active char(3) default 'no', ! content_location varchar(150) null, ! storage varchar(10) default 'database', ! mime_type varchar(30) null, ! notes text null, ! primary key ( location ) ) |