]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/update_sqlite3_tables.in
Update Catalog version and use DeltaSeq instead of MarkId
[bacula/bacula] / bacula / src / cats / update_sqlite3_tables.in
index 968879ad06cf5f5ffc138e113328853c8f9e8c72..1b8ae4f67bbc9fc38838e9a243688f39d0829145 100644 (file)
@@ -46,7 +46,9 @@ CREATE TABLE RestoreObject (
    );
 CREATE INDEX restore_jobid_idx ON RestoreObject (JobId);
 
-UPDATE Version SET VersionId=13;
+ALTER TABLE File ADD COLUMN DeltaSeq smallint default 0;
+
+UPDATE Version SET VersionId=14;
 COMMIT;
 
 END-OF-DATA