]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Change VersionId from 10 to 11
authorEric Bollengier <eric@eb.homelinux.org>
Fri, 21 Mar 2008 13:39:33 +0000 (13:39 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Fri, 21 Mar 2008 13:39:33 +0000 (13:39 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6655 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/cats.h
bacula/src/cats/drop_mysql_tables.in
bacula/src/cats/drop_postgresql_tables.in
bacula/src/cats/grant_postgresql_privileges.in
bacula/src/cats/grant_sqlite_privileges.in
bacula/src/cats/make_mysql_tables.in
bacula/src/cats/make_postgresql_tables.in
bacula/src/cats/make_sqlite3_tables.in
bacula/src/cats/make_sqlite_tables.in

index 7d7e94e7c08fa196054a35560cd3f75649fc4272..22e4f538eb59dd247c045cce60901ec77662c5d0 100644 (file)
@@ -87,7 +87,7 @@ typedef int (DB_RESULT_HANDLER)(void *, int, char **);
 #if defined(BUILDING_CATS)
 #ifdef HAVE_SQLITE
 
-#define BDB_VERSION 10
+#define BDB_VERSION 11
 
 #include <sqlite.h>
 
@@ -207,7 +207,7 @@ extern const char* my_sqlite_batch_fill_path_query;
 #ifdef HAVE_SQLITE3
 
 
-#define BDB_VERSION 10
+#define BDB_VERSION 11
 
 #include <sqlite3.h>
 
@@ -333,7 +333,7 @@ extern const char* my_sqlite_batch_fill_path_query;
 
 #ifdef HAVE_MYSQL
 
-#define BDB_VERSION 10
+#define BDB_VERSION 11
 
 #include <mysql.h>
 
@@ -415,7 +415,7 @@ extern void  my_mysql_free_result(B_DB *mdb);
 
 #ifdef HAVE_POSTGRESQL
 
-#define BDB_VERSION 10
+#define BDB_VERSION 11
 
 #include <libpq-fe.h>
 
@@ -529,7 +529,7 @@ extern const char* my_pg_batch_fill_path_query;
 
 #ifdef HAVE_DBI
 
-#define BDB_VERSION 10
+#define BDB_VERSION 11
 
 #include <dbi/dbi.h>
 
index e291759cbde6bb78708a1a4baae027e3ba363eef..4e543ea379e0c4bd614caf0b794203c1bfbc4272 100644 (file)
@@ -16,6 +16,7 @@ DROP TABLE IF EXISTS MediaType;
 DROP TABLE IF EXISTS File;
 DROP TABLE IF EXISTS Client;
 DROP TABLE IF EXISTS Job;
+DROP TABLE IF EXISTS JobStat;
 DROP TABLE IF EXISTS Media;
 DROP TABLE IF EXISTS JobMedia;
 DROP TABLE IF EXISTS Pool;
index a0da7e391ea4507da4ae122ae5d9f989e4289b34..7bc4acfc424e7b9e2cbd0e3a1addfc93bfd83e83 100644 (file)
@@ -11,6 +11,7 @@ drop table basefiles;
 drop table jobmedia;
 drop table file;
 drop table job;
+drop table jobstat;
 drop table media;
 drop table client;
 drop table pool;
index ab582e859f1929a88dc0cc143027079b01c6cf82..3be65e7c07f4d40d2b21dee028c3ac718dd639a5 100644 (file)
@@ -32,6 +32,7 @@ grant all on status     to ${USER};
 grant all on location    to ${USER};
 grant all on locationlog  to ${USER};
 grant all on log         to ${USER};
+grant all on jobstat     to ${USER};
 
 -- for sequences on those tables
 
index 15d45474e3cb127762d53f0beaeb10e70d30e8cc..452975ee5849d73241841139a2e516d4c4114a0c 100644 (file)
@@ -4,4 +4,4 @@
 #
 bindir=@SQL_BINDIR@
 
-# nothing to do here
\ No newline at end of file
+# nothing to do here
index 32a5b4d9843549ca14e05942ef6a8392025bb208..665dea42992c33de5ba11a52b59784ce66db799b 100644 (file)
@@ -336,7 +336,7 @@ CREATE TABLE Version (
    );
 
 -- Initialize Version           
-INSERT INTO Version (VersionId) VALUES (10);
+INSERT INTO Version (VersionId) VALUES (11);
 
 END-OF-DATA
 then
index d63e2de69912d08b1e3768022c5eccbce3b87836..dbafefe5273c3f7686bfbc227a85e34928e7d496 100644 (file)
@@ -372,7 +372,7 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
 INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('i', 'Doing batch insert file records');
 
-INSERT INTO Version (VersionId) VALUES (10);
+INSERT INTO Version (VersionId) VALUES (11);
 
 -- Make sure we have appropriate permissions
 
index aea3628f6e8f3b105735696a2dc6c6f9c045d915..9d1900d847a0fe5e13a3e39e148b92f126d10268 100644 (file)
@@ -357,7 +357,7 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
 
 
 -- Initialize Version           
-INSERT INTO Version (VersionId) VALUES (10);
+INSERT INTO Version (VersionId) VALUES (11);
 
 
 PRAGMA default_cache_size = 100000;
index 6173a56a59861a14d712e806054231d7b618f554..b9880fb55136295fe94cf91a12f493fe5960b0f8 100644 (file)
@@ -357,7 +357,7 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
 
 
 -- Initialize Version           
-INSERT INTO Version (VersionId) VALUES (10);
+INSERT INTO Version (VersionId) VALUES (11);
 
 
 PRAGMA default_synchronous = OFF;