]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix RestoreObject schema on PostgreSQL
authorEric Bollengier <eric@eb.homelinux.org>
Sat, 1 May 2010 09:12:43 +0000 (11:12 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:46 +0000 (16:53 +0200)
bacula/src/cats/make_postgresql_tables.in

index 4fb674524740177b369e3820636bec6a6003ed3b..04e217f913f71057caccd3f46abe1dc8a54b937a 100644 (file)
@@ -84,10 +84,10 @@ CREATE TABLE RestoreObject (
    ObjectFullLength INTEGER DEFAULT 0,
    ObjectIndex INTEGER DEFAULT 0,
    ObjectType INTEGER DEFAULT 0,
-   FileIndex INTEGER UNSIGNED DEFAULT 0,
-   JobId INTEGER UNSIGNED,
+   FileIndex INTEGER DEFAULT 0,
+   JobId INTEGER,
    ObjectCompression INTEGER DEFAULT 0,
-   PRIMARY KEY(RestoreObjectId),
+   PRIMARY KEY(RestoreObjectId)
    );
 CREATE INDEX restore_jobid_idx on RestoreObject(JobId);