From: Michal Rakowski Date: Thu, 15 Oct 2020 12:48:46 +0000 (+0200) Subject: Update make_sqlite script with ObjectCategory X-Git-Tag: Release-11.3.2~987 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34637495252184246fe2d1948b275d881c20cabd;p=thirdparty%2Fbacula.git Update make_sqlite script with ObjectCategory --- diff --git a/bacula/src/cats/make_sqlite3_tables.in b/bacula/src/cats/make_sqlite3_tables.in index 3b0034cc0..fef712521 100644 --- a/bacula/src/cats/make_sqlite3_tables.in +++ b/bacula/src/cats/make_sqlite3_tables.in @@ -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) );