aboutsummaryrefslogtreecommitdiff
path: root/sql/base
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2013-11-11 14:34:44 +0100
committerSpp <spp@jorge.gr>2013-11-11 14:35:16 +0100
commitcd486622333c9d0c725e882d149fe8d4ad342e2a (patch)
treefee3c2d8bba1828c2577fc9feac89c021ee8be74 /sql/base
parent79a2d6b7fc9e516435ff6e035ad869aad1cae876 (diff)
Core/Logging: Minor changes
- Select stderr when writing ERROR and FATAL messages - Simplify function defines - Fix `logs` table structure with latest logging changes
Diffstat (limited to 'sql/base')
-rw-r--r--sql/base/auth_database.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql
index 003b91b6286..1150602ffc8 100644
--- a/sql/base/auth_database.sql
+++ b/sql/base/auth_database.sql
@@ -224,7 +224,7 @@ DROP TABLE IF EXISTS `logs`;
CREATE TABLE `logs` (
`time` int(10) unsigned NOT NULL,
`realm` int(10) unsigned NOT NULL,
- `type` tinyint(3) unsigned NOT NULL,
+ `type` varchar(250),
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`string` text CHARACTER SET latin1
) ENGINE=InnoDB DEFAULT CHARSET=utf8;