git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@151
91ce42f0-d328-0410-95d8-
f526ca767f89
--- /dev/null
+#!/bin/sh
+#
+# Drop Bacula tables -- works for whatever is configured,
+# MySQL or SQLite
+#
+if test xsqlite = x@DB_NAME@ ; then
+ source ./drop_sqlite_tables
+else
+ source ./drop_mysql_tables
+fi
--- /dev/null
+#!/bin/sh
+#
+# This routine makes the appropriately configured
+# Bacula tables for either MySQL or SQLite
+#
+if test xsqlite = x@DB_NAME@ ; then
+ source ./make_sqlite_tables
+else
+ source ./make_mysql_tables
+fi