3 # This routine alters the appropriately configured
4 # Bacula tables for PostgreSQL, MySQL, or SQLite.
6 if test xsqlite = x@DB_TYPE@ -o xsqlite3 = x@DB_TYPE@ ; then
7 echo "Altering SQLite tables"
8 @scriptdir@/update_@DB_TYPE@_tables $*
10 if test xmysql = x@DB_TYPE@ ; then
11 echo "Altering MySQL tables"
12 @scriptdir@/update_mysql_tables $*
14 if test xpostgresql = x@DB_TYPE@ ; then
15 echo "Altering PostgreSQL tables"
16 @scriptdir@/update_postgresql_tables $*