summaryrefslogtreecommitdiff
path: root/modules/dblog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-28 07:11:14 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-28 07:11:14 +0000
commit9dc7f86df1bdd9495739569f6e056804cc26408c (patch)
treedd1ba46948c4feae7b5b23e1f05c6bc07d68ddcb /modules/dblog
parent1c55ed7d88d6dd23458e4cec68e6321965d98a02 (diff)
downloadbrdo-9dc7f86df1bdd9495739569f6e056804cc26408c.tar.gz
brdo-9dc7f86df1bdd9495739569f6e056804cc26408c.tar.bz2
- Patch #147761 by bjaspan: correct length for variables column.
Diffstat (limited to 'modules/dblog')
-rw-r--r--modules/dblog/dblog.schema4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dblog/dblog.schema b/modules/dblog/dblog.schema
index 56cd84a42..785f1d98f 100644
--- a/modules/dblog/dblog.schema
+++ b/modules/dblog/dblog.schema
@@ -7,8 +7,8 @@ function dblog_schema() {
'wid' => array('type' => 'serial', 'not null' => TRUE),
'uid' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
'type' => array('type' => 'varchar', 'length' => 16, 'not null' => TRUE, 'default' => ''),
- 'message' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'),
- 'variables' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'),
+ 'message' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
+ 'variables' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
'severity' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'),
'link' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
'location' => array('type' => 'text', 'not null' => TRUE),