From d6417257fde4e22252c78f2def21091016db17f3 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 12 Sep 2011 13:57:19 +1200 Subject: [PATCH] While testing the commits for 6716 I discovered a couple of missing drop tables, fixed now --- installer/data/mysql/kohastructure.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 13fa53dd03..32343a98ad 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -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', -- 2.39.2