]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/update_postgresql_tables.in
ebl Modify disk-changer to check if slot contains something before
[bacula/bacula] / bacula / src / cats / update_postgresql_tables.in
old mode 100755 (executable)
new mode 100644 (file)
index 548faf7..159e5bd
@@ -1,18 +1,22 @@
 #!/bin/sh
 #
-# Shell script to update PostgreSQL tables
+# Shell script to update PostgreSQL tables from version 2.0.0 to 3.0.0 or higher
 #
 echo " "
-echo "Depending on the size of your database,"
-echo "this script may take several minutes to run."
+echo "This script will update a Bacula PostgreSQL database from version 10 to 11"
+echo " which is needed to convert from Bacula version 2.0.0 to 3.0.x or higher"
 echo " "
 bindir=@SQL_BINDIR@
+db_name=@db_name@
 
-if $bindir/psql $* -f - <<END-OF-DATA
-\c bacula
+if $bindir/psql -f - -d ${db_name} $* <<END-OF-DATA
 
-DELETE FROM Version;
-INSERT INTO VERSION (VersionId) VALUES (7);
+-- Create a table like Job for long term statistics
+CREATE TABLE jobstat (LIKE job);
+
+UPDATE version SET versionid=11;
+
+vacuum analyse;
 
 END-OF-DATA
 then