From 2edcafb9a340f648352cfcf9034ed382ca9ae672 Mon Sep 17 00:00:00 2001 From: Dan Langille Date: Mon, 17 Apr 2006 12:42:00 +0000 Subject: [PATCH] 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 --- bacula/src/cats/drop_mysql_tables.in | 2 ++ bacula/src/cats/drop_postgresql_tables.in | 2 ++ 2 files changed, 4 insertions(+) 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." -- 2.39.5