From: Michal Rakowski Date: Fri, 16 Oct 2020 13:12:07 +0000 (+0200) Subject: Fix for update mysql script with ObjectCategory index X-Git-Tag: Release-11.3.2~910 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ade85572965161fc431de884958c2463b41e731;p=thirdparty%2Fbacula.git Fix for update mysql script with ObjectCategory index --- diff --git a/bacula/src/cats/make_mysql_tables.in b/bacula/src/cats/make_mysql_tables.in index bf640c6b1..64f780541 100644 --- a/bacula/src/cats/make_mysql_tables.in +++ b/bacula/src/cats/make_mysql_tables.in @@ -79,7 +79,7 @@ CREATE TABLE Object ); create index object_jobid_idx on Object (JobId); -create index object_type_idx on Object (ObjectCategory(255)); +create index object_category_idx on Object (ObjectCategory(255)); create index object_type_idx on Object (ObjectType(255)); create index object_name_idx on Object (ObjectName(255)); create index object_source_idx on Object (ObjectSource(255));