While testing the commits for 6716 I discovered a couple of missing

drop tables, fixed now
This commit is contained in:
Chris Cormack 2011-09-12 13:57:19 +12:00
parent b3b6278e20
commit d6417257fd

View 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',