git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@869 
91ce42f0-d328-0410-95d8-
f526ca767f89
 
 #!/bin/sh
 #
 # This routine makes the appropriately configured
-#  Bacula tables for either MySQL or SQLite
+#  Bacula tables for PostgreSQL, MySQL, or SQLite.
 #
 if test xsqlite = x@DB_NAME@ ; then
   echo "Making SQLite tables"
     . ./make_mysql_tables
   else
     echo "Making PostgreSQL tables"
-    . ./make_postgresql_tables
+    # hard coded database name
+    . ./make_postgresql_tables bacula
   fi
 fi