Changed BOOLEAN type by CHAR(1) to fix the database-upgrade.
This commit is contained in:
davidcallizaya
2017-06-02 13:53:36 -04:00
parent 8e1de4ce51
commit dd919be30d
4 changed files with 15 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ class WebEntryMapBuilder
$tMap->addColumn('WE_AUTHENTICATION', 'WeAuthentication', 'string', CreoleTypes::VARCHAR, true, 14);
$tMap->addColumn('WE_HIDE_INFORMATION_BAR', 'WeHideInformationBar', 'boolean', CreoleTypes::BOOLEAN, false, null);
$tMap->addColumn('WE_HIDE_INFORMATION_BAR', 'WeHideInformationBar', 'string', CreoleTypes::CHAR, false, 1);
$tMap->addColumn('WE_CALLBACK', 'WeCallback', 'string', CreoleTypes::VARCHAR, true, 13);