aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
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;