While testing the commits for 6716 I discovered a couple of missing
authorChris Cormack <chrisc@catalyst.net.nz>
Mon, 12 Sep 2011 01:57:19 +0000 (13:57 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 12 Sep 2011 01:57:19 +0000 (13:57 +1200)
drop tables, fixed now

installer/data/mysql/kohastructure.sql

index 13fa53d..32343a9 100644 (file)
@@ -433,6 +433,7 @@ CREATE TABLE `categories` (
 --
 -- Table: collections
 --
+DROP TABLE IF EXISTS collections;
 CREATE TABLE collections (
   colId integer(11) NOT NULL auto_increment,
   colTitle varchar(100) NOT NULL DEFAULT '',
@@ -444,6 +445,7 @@ CREATE TABLE collections (
 --
 -- Table: collections_tracking
 --
+DROP TABLE IF EXISTS collections_tracking;
 CREATE TABLE collections_tracking (
   ctId integer(11) NOT NULL auto_increment,
   colId integer(11) NOT NULL DEFAULT 0 comment 'collections.colId',