From: Alain Spineux Date: Fri, 7 Oct 2022 10:37:06 +0000 (+0200) Subject: fix sqlite3 make table Error: near line 254: near ")": syntax error X-Git-Tag: Beta-15.0.0~427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05920e3c1de6c142023c6c456ed17efbd40355ac;p=thirdparty%2Fbacula.git fix sqlite3 make table Error: near line 254: near ")": syntax error - one ',' too much --- diff --git a/bacula/src/cats/make_sqlite3_tables.in b/bacula/src/cats/make_sqlite3_tables.in index 381e48e45..cc897a7ad 100644 --- a/bacula/src/cats/make_sqlite3_tables.in +++ b/bacula/src/cats/make_sqlite3_tables.in @@ -304,7 +304,7 @@ CREATE TABLE JobHisto ( WriteStorageId integer default 0, -- Id of the Storage used to Write WriteDevice text default '', -- Name of the Write Device StatusInfo text default '', -- Info to determine the error status - Encrypted int default 0, -- 0 no, 1 fd side, 2 sd side, 3 both + Encrypted int default 0 -- 0 no, 1 fd side, 2 sd side, 3 both ); CREATE INDEX inx61 ON JobHisto (StartTime);