get()->getType()) { case DatabaseType::MYSQL: $dbPool->get()->con->prepare( 'CREATE TABLE if NOT EXISTS `' . $dbPool->get()->prefix . 'marketing_promotion` ( `marketing_promotion_id` int(11) NOT NULL AUTO_INCREMENT, `marketing_promotion_name` varchar(30) NOT NULL, `marketing_promotion_description` text DEFAULT NULL, `marketing_promotion_start` datetime DEFAULT NULL, `marketing_promotion_end` datetime DEFAULT NULL, `marketing_promotion_type` tinyint(1) DEFAULT NULL, PRIMARY KEY (`marketing_promotion_id`) )ENGINE=InnoDB DEFAULT CHARSET=utf8;' )->execute(); break; } } }