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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12048 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-01-03 10:52:04 +00:00
parent 8768ba8225
commit 7cf37df1f6
-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),