Index: branches/5.2.x/core/install/install_schema.sql =================================================================== diff -u -N -r14882 -r14892 --- branches/5.2.x/core/install/install_schema.sql (.../install_schema.sql) (revision 14882) +++ branches/5.2.x/core/install/install_schema.sql (.../install_schema.sql) (revision 14892) @@ -817,6 +817,18 @@ KEY `Status` (`Status`) ); +CREATE TABLE ItemFilters ( + FilterId int(11) NOT NULL AUTO_INCREMENT, + ItemPrefix varchar(255) NOT NULL, + FilterField varchar(255) NOT NULL, + FilterType varchar(100) NOT NULL, + Enabled tinyint(4) NOT NULL DEFAULT '1', + RangeCount int(11) DEFAULT NULL, + PRIMARY KEY (FilterId), + KEY ItemPrefix (ItemPrefix), + KEY Enabled (Enabled) +); + CREATE TABLE SpamReports ( ReportId int(11) NOT NULL AUTO_INCREMENT, ItemPrefix varchar(255) NOT NULL,