]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Update make_sqlite script with ObjectCategory
authorMichal Rakowski <michal.rakowski@baculasystems.com>
Thu, 15 Oct 2020 12:48:46 +0000 (14:48 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:02:57 +0000 (09:02 +0100)
bacula/src/cats/make_sqlite3_tables.in

index 3b0034cc09a1a8672631d226601e35500e834c2b..fef7125212f0a95d6d0e0beb15cb09bbdb4b3496 100644 (file)
@@ -49,11 +49,12 @@ CREATE TABLE Object
    Filename     text     not null,
    PluginName   text     not null,
 
-   ObjectType   text     not null,
-   ObjectName   text     not null,
-   ObjectSource text     not null,
-   ObjectUUID   text     not null,
-   ObjectSize   integer  not null,
+   ObjectCategory  text     not null,
+   ObjectType      text     not null,
+   ObjectName      text     not null,
+   ObjectSource    text     not null,
+   ObjectUUID      text     not null,
+   ObjectSize      integer  not null,
    primary key (ObjectId)
 );