From: Eric Bollengier Date: Wed, 22 Sep 2021 15:00:38 +0000 (+0200) Subject: Rename Client.Plugin to Client.Plugins X-Git-Tag: Beta-15.0.0~872 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9c15f09f26804533efb7b9d44696104c2ed9751;p=thirdparty%2Fbacula.git Rename Client.Plugin to Client.Plugins --- diff --git a/bacula/src/cats/make_mysql_tables.in b/bacula/src/cats/make_mysql_tables.in index 599e4bd30..9dec640a1 100644 --- a/bacula/src/cats/make_mysql_tables.in +++ b/bacula/src/cats/make_mysql_tables.in @@ -473,7 +473,7 @@ CREATE TABLE Client ( ClientId INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, Name TINYBLOB NOT NULL, Uname TINYBLOB NOT NULL, /* full uname -a of client */ - Plugin TINYBLOB DEFAULT '', + Plugins TINYBLOB DEFAULT '', AutoPrune TINYINT DEFAULT 0, FileRetention BIGINT UNSIGNED DEFAULT 0, JobRetention BIGINT UNSIGNED DEFAULT 0, diff --git a/bacula/src/cats/make_postgresql_tables.in b/bacula/src/cats/make_postgresql_tables.in index 631399814..874cb077d 100644 --- a/bacula/src/cats/make_postgresql_tables.in +++ b/bacula/src/cats/make_postgresql_tables.in @@ -455,7 +455,7 @@ CREATE TABLE client clientid serial not null, name text not null, uname text not null, - plugin text default '', + plugins text default '', autoprune smallint default 0, fileretention bigint default 0, jobretention bigint default 0,