From: Dan Langille Date: Mon, 17 Apr 2006 12:42:00 +0000 (+0000) Subject: Remember to drop MAC and Location tables. X-Git-Tag: Release-2.0.0~945 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2edcafb9a340f648352cfcf9034ed382ca9ae672;p=bacula%2Fbacula Remember to drop MAC and Location tables. Noticed by: "Robert Nelson" git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2935 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/drop_mysql_tables.in b/bacula/src/cats/drop_mysql_tables.in index 7c730c5b71..f828ef0af0 100644 --- a/bacula/src/cats/drop_mysql_tables.in +++ b/bacula/src/cats/drop_mysql_tables.in @@ -27,6 +27,8 @@ DROP TABLE IF EXISTS BaseFiles; DROP TABLE IF EXISTS UnsavedFiles; DROP TABLE IF EXISTS CDImages; DROP TABLE IF EXISTS Status; +DROP TABLE IF EXISTS MAC; +DROP TABLE IF EXISTS Location; END-OF-DATA then echo "Deletion of Bacula MySQL tables succeeded." diff --git a/bacula/src/cats/drop_postgresql_tables.in b/bacula/src/cats/drop_postgresql_tables.in index 7ef5ad9d43..0d14bda04e 100644 --- a/bacula/src/cats/drop_postgresql_tables.in +++ b/bacula/src/cats/drop_postgresql_tables.in @@ -23,6 +23,8 @@ drop table Device; drop table Storage; drop table MediaType; drop table Status; +drop table MAC; +drop table Location; END-OF-DATA then echo "Deletion of Bacula PostgreSQL tables succeeded."