execute(' CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'ddw_scopes` ( `id_scope` int(11) unsigned NOT NULL AUTO_INCREMENT, `id_carrier` mediumint(8) unsigned NOT NULL, `id_associated` int(10) unsigned NOT NULL, `scope` varchar(255) NOT NULL, `cutofftime_enabled` tinyint(3) unsigned NOT NULL DEFAULT "0", `cutofftime_hours` tinyint(3) unsigned NOT NULL DEFAULT "0", `cutofftime_minutes` tinyint(4) NOT NULL DEFAULT "0", `min_days` mediumint(8) unsigned NOT NULL DEFAULT "0", `max_days` mediumint(8) unsigned NOT NULL DEFAULT "0", PRIMARY KEY (`id_scope`) ) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8;'); DDWInstall::addColumn('ddw', 'product_eta_display_enabled', 'tinyint(3) unsigned NOT NULL DEFAULT "0"'); return true; }