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,
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,