#!/bin/sh
#
#  Drop Bacula tables -- works for whatever is configured,
#    MySQL or SQLite
#
if test xsqlite = xsqlite ; then
  . ./drop_sqlite_tables
  echo "Dropped SQLite tables"
else
  . ./drop_mysql_tables
  echo "Dropped MySQL tables"
fi
