From: Dan Langille Date: Fri, 12 Dec 2003 15:48:24 +0000 (+0000) Subject: Fix broken DDL X-Git-Tag: Release-1.34.0~285 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4bfa3d305e65051f55195959c40a49a7eff37af4;p=bacula%2Fbacula Fix broken DDL git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@871 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/make_mysql_tables.in b/bacula/src/cats/make_mysql_tables.in index 3c9ff1442c..6db5652082 100644 --- a/bacula/src/cats/make_mysql_tables.in +++ b/bacula/src/cats/make_mysql_tables.in @@ -139,8 +139,8 @@ CREATE TABLE Pool ( PoolType ENUM('Backup', 'Copy', 'Cloned', 'Archive', 'Migration', 'Scratch') NOT NULL, LabelFormat TINYBLOB, Enabled TINYINT DEFAULT 1, - ScratchPoolId INTEGER UNSIGNED REFERENCES Pool DEFAULT 0, - RecyclePoolId INTEGER UNSIGNED REFERENCES Pool DEFAULT 0, + ScratchPoolId INTEGER UNSIGNED DEFAULT 0 REFERENCES Pool, + RecyclePoolId INTEGER UNSIGNED DEFAULT 0 REFERENCES Pool, UNIQUE (Name(128)), PRIMARY KEY (PoolId) );