aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-10-08 09:09:05 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-10-08 09:09:05 +0000
commit75095b0329236ea0e2522a633f4a2be733d6869b (patch)
tree990b9181d8963ac3006346ecabec339f9b4a12ba /h-source/tables.sql
parent53f9d690ee2f49545d63788be6c1fe80d9ec6e58 (diff)
improved the way text can be written inside modules of the website
Diffstat (limited to 'h-source/tables.sql')
-rw-r--r--h-source/tables.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/h-source/tables.sql b/h-source/tables.sql
index 65da6bc..7269ee1 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -209,7 +209,8 @@ create table deletion (
create table params (
id_par INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
- updating char(4) not null default 'no'
+ updating char(4) not null default 'no',
+ boxes_xml text CHARACTER SET utf8 not null
)engine=innodb;
insert into params (updating) values ('no');