Index: branches/5.2.x/install/upgrades.sql =================================================================== diff -u -N -r14884 -r14891 --- branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 14884) +++ branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 14891) @@ -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 Index: branches/5.2.x/install/install_data.sql =================================================================== diff -u -N -r14884 -r14891 --- branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 14884) +++ branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 14891) @@ -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);