Index: install/install_data.sql =================================================================== --- install/install_data.sql (revision 14888) +++ install/install_data.sql (working copy) @@ -471,4 +471,9 @@ INSERT INTO ImportScripts VALUES (DEFAULT, 'Products from CSV file [In-Commerce]', '', 'p', 'In-Commerce', '', 'CSV', '1'); +INSERT INTO ItemFilters VALUES + (DEFAULT, 'p', 'ManufacturerId', 'checkbox', 1, NULL), + (DEFAULT, 'p', 'Price', 'range', 1, 11), + (DEFAULT, 'p', 'EditorsPick', 'radio', 1, NULL); + INSERT INTO Modules VALUES ('In-Commerce', 'modules/in-commerce/', 'p', DEFAULT, 1, 4, 'in-commerce/', 2, NULL, NULL); Index: install/upgrades.sql =================================================================== --- install/upgrades.sql (revision 14888) +++ install/upgrades.sql (working copy) @@ -233,4 +233,9 @@ INSERT INTO ConfigurationValues VALUES(DEFAULT, 'OrderVATIncluded', '0', 'In-Commerce', 'in-commerce:general', 'la_Text_Orders', 'la_config_OrderVATIncluded', 'checkbox', NULL, NULL, 10.12, '0', '0', NULL); -ALTER TABLE Orders ADD VATIncluded TINYINT(1) UNSIGNED NOT NULL DEFAULT '0'; \ No newline at end of file +ALTER TABLE Orders ADD VATIncluded TINYINT(1) UNSIGNED NOT NULL DEFAULT '0'; + +INSERT INTO ItemFilters VALUES + (DEFAULT, 'p', 'ManufacturerId', 'checkbox', 1, NULL), + (DEFAULT, 'p', 'Price', 'range', 1, 11), + (DEFAULT, 'p', 'EditorsPick', 'radio', 1, NULL); \ No newline at end of file