View | Details | Raw Unified | Return to bug 14435
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_14435_drop_table_saved_reports.sql (+1 lines)
Line 0 Link Here
1
DROP TABLE IF EXISTS saved_reports;
(-)a/installer/data/mysql/kohastructure.sql (-15 lines)
Lines 1911-1930 CREATE TABLE saved_sql ( -- saved sql reports Link Here
1911
1911
1912
1912
1913
--
1913
--
1914
-- Table structure for `saved_reports`
1915
--
1916
1917
DROP TABLE IF EXISTS `saved_reports`;
1918
CREATE TABLE saved_reports (
1919
   `id` int(11) NOT NULL auto_increment,
1920
   `report_id` int(11) default NULL,
1921
   `report` longtext,
1922
   `date_run` datetime default NULL,
1923
   PRIMARY KEY  (`id`)
1924
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1925
1926
1927
--
1928
-- Table structure for table `search_history`
1914
-- Table structure for table `search_history`
1929
--
1915
--
1930
1916
1931
- 

Return to bug 14435