From: Kern Sibbald Date: Wed, 13 Oct 2004 20:55:41 +0000 (+0000) Subject: Fix MySQL syntax error X-Git-Tag: Release-7.0.0~9136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8119a50eb74e03365f5349bd2db707f695aa516f;p=thirdparty%2Fbacula.git Fix MySQL syntax error git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1646 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/make_mysql_tables.in b/bacula/src/cats/make_mysql_tables.in index f4395b6668..b51c33192e 100644 --- a/bacula/src/cats/make_mysql_tables.in +++ b/bacula/src/cats/make_mysql_tables.in @@ -116,7 +116,7 @@ CREATE TABLE Media ( MediaAddressing TINYINT NOT NULL DEFAULT 0, VolReadTime BIGINT UNSIGNED NOT NULL DEFAULT 0, VolWriteTime BIGINT UNSIGNED NOT NULL DEFAULT 0, - EndFile INTEGER UNSIGNED NOT NULL DEFAULT 0; + EndFile INTEGER UNSIGNED NOT NULL DEFAULT 0, EndBlock INTEGER UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY(MediaId), INDEX (PoolId)