getModuleSqls()) { foreach ($sqls as $query) { if ($query) { if (!DB::getInstance()->execute(trim($query))) { return false; } } } } return true; } public function getModuleSqls() { return array( "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."htl_room_block_data` ( `id_room_block` int(11) NOT NULL AUTO_INCREMENT, `id_product` int(11) NOT NULL, `active` tinyint(4) NOT NULL, `position` int(11) NOT NULL, `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL, PRIMARY KEY (`id_room_block`) ) ENGINE="._MYSQL_ENGINE_." DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;" ); } public function dropTables() { return DB::getInstance()->execute( 'DROP TABLE IF EXISTS `'._DB_PREFIX_.'htl_room_block_data`; '); } }