// Fix strict mysql in Logger class #PSFV-309

This commit is contained in:
rMalie
2012-01-03 10:52:04 +00:00
parent 200a3319cf
commit 05e642c4e2
-1
View File
@@ -58,7 +58,6 @@ class LoggerCore extends ObjectModel
'table' => 'log',
'primary' => 'id_log',
'fields' => array(
'id_log' => array('type' => self::TYPE_STRING, 'validate' => 'isUnsignedId'),
'severity' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true),
'error_code' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'),
'message' => array('type' => self::TYPE_STRING, 'validate' => 'isMessage', 'required' => true),