aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-02-18 00:17:07 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-02-18 00:17:07 +0000
commit0f42e1a7816893e083f49c933d1393a102a3510e (patch)
tree70ec94d02d098e75453d5961d9b6a9c0b77be469 /h-source/tables.sql
parent265e0708d6eea9de98b36035fff1287a01221a00 (diff)
improved wiki
Diffstat (limited to 'h-source/tables.sql')
-rw-r--r--h-source/tables.sql8
1 files changed, 4 insertions, 4 deletions
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;