BUG 8609 "Missing datetime field type" SOLVED

- the reporter is right, DATETIME field type is missing
- DATETIME field type was added, it is not a directly supported type by our ORM (propel), but we're handling that with its equivalent TIMESTAMP, but don't worry it is transparent by final users.
This commit is contained in:
Erik Amaru Ortiz
2012-03-08 16:08:37 -04:00
parent 7bb6359bb2
commit 4e6ade5d1b
3 changed files with 21 additions and 4 deletions

View File

@@ -575,6 +575,7 @@ class PmTable
$types['LONGVARCHAR'] = 'LONGVARCHAR';
$types['DATE'] = 'DATE';
$types['TIME'] = 'TIME';
$types['DATETIME'] = 'DATETIME';
//$types['BLOB'] = 'BLOB'; <- disabled
//$types['CLOB'] = 'CLOB'; <- disabled