diff --git a/install-dev/sql/db.sql b/install-dev/sql/db.sql index 614ffecfd..5f9a78d0b 100644 --- a/install-dev/sql/db.sql +++ b/install-dev/sql/db.sql @@ -632,7 +632,6 @@ CREATE TABLE `PREFIX_employee` ( `bo_uimode` ENUM('hover','click') default 'click', `bo_show_screencast` tinyint(1) NOT NULL default '1', `active` tinyint(1) unsigned NOT NULL default '0', - `show_screencast` tinyint(1) unsigned NOT NULL default '1', `id_last_order` tinyint(1) unsigned NOT NULL default '0', `id_last_message` tinyint(1) unsigned NOT NULL default '0', `id_last_customer` tinyint(1) unsigned NOT NULL default '0', diff --git a/install-dev/sql/upgrade/1.5.0.0.sql b/install-dev/sql/upgrade/1.5.0.0.sql index ddbd4b106..c96d511aa 100755 --- a/install-dev/sql/upgrade/1.5.0.0.sql +++ b/install-dev/sql/upgrade/1.5.0.0.sql @@ -299,8 +299,6 @@ CREATE TABLE `PREFIX_referrer_shop` ( INSERT INTO `PREFIX_referrer_shop` (`id_referrer`, `id_shop`) SELECT `id_referrer`, 1 FROM `PREFIX_referrer`; ALTER TABLE `PREFIX_referrer` DROP `cache_visitors`, DROP `cache_visits`, DROP `cache_pages`, DROP `cache_registrations`, DROP `cache_orders`, DROP `cache_sales`, DROP `cache_reg_rate`, DROP `cache_order_rate`; -ALTER TABLE `PREFIX_employee` ADD `show_screencast` TINYINT(1) UNSIGNED NOT NULL default '1'; - ALTER TABLE `PREFIX_cart_product` ADD `id_shop` INT NOT NULL DEFAULT '1' AFTER `id_product`; ALTER TABLE `PREFIX_customization` ADD `in_cart` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0';