From 0f42e1a7816893e083f49c933d1393a102a3510e Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Fri, 18 Feb 2011 00:17:07 +0000 Subject: improved wiki --- h-source/tables.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'h-source/tables.sql') diff --git a/h-source/tables.sql b/h-source/tables.sql index b22e0be..c04e4d3 100644 --- a/h-source/tables.sql +++ b/h-source/tables.sql @@ -240,8 +240,8 @@ create table wiki ( created_by int not null, creation_date timestamp default CURRENT_TIMESTAMP, update_date datetime not null, - title varchar(100) CHARACTER SET utf8 not null, - title_clean varchar(100) CHARACTER SET utf8 not null, + title varchar(200) CHARACTER SET utf8 not null, + title_clean varchar(200) CHARACTER SET utf8 not null, page text CHARACTER SET utf8 not null, deleted char(3) not null default 'no', blocked CHAR(3) NOT NULL default 'no', @@ -253,8 +253,8 @@ create table wiki_revisions ( created_by int not null, creation_date timestamp default CURRENT_TIMESTAMP, update_date datetime not null, - title varchar(100) CHARACTER SET utf8 not null, - title_clean varchar(100) CHARACTER SET utf8 not null, + title varchar(200) CHARACTER SET utf8 not null, + title_clean varchar(200) CHARACTER SET utf8 not null, page text CHARACTER SET utf8 not null, id_wiki INT UNSIGNED NOT NULL )engine=innodb; -- cgit v1.2.3