From 4bfa3d305e65051f55195959c40a49a7eff37af4 Mon Sep 17 00:00:00 2001 From: Dan Langille Date: Fri, 12 Dec 2003 15:48:24 +0000 Subject: [PATCH] Fix broken DDL git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@871 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/cats/make_mysql_tables.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) ); -- 2.39.5