]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
fix sqlite3 make table Error: near line 254: near ")": syntax error
authorAlain Spineux <alain@baculasystems.com>
Fri, 7 Oct 2022 10:37:06 +0000 (12:37 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 14 Sep 2023 11:56:59 +0000 (13:56 +0200)
- one ',' too much

bacula/src/cats/make_sqlite3_tables.in

index 381e48e4576d798d5c3badb952822dbfa7b74779..cc897a7ada9c5e9c13c4cf949e60fc2b89a31358 100644 (file)
@@ -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);