diff options
author | Mario <mario@mariovavti.com> | 2023-01-12 16:11:42 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-12 16:11:42 +0000 |
commit | 550b6d90a49d01d8bc682990e3cd9dcb69052515 (patch) | |
tree | 42fb47e8678d1dd71c7fc97e8bbc11ebd0bb4279 /install | |
parent | 8a7b22141239969b3af39582019dfa455612bb41 (diff) | |
download | volse-hubzilla-550b6d90a49d01d8bc682990e3cd9dcb69052515.tar.gz volse-hubzilla-550b6d90a49d01d8bc682990e3cd9dcb69052515.tar.bz2 volse-hubzilla-550b6d90a49d01d8bc682990e3cd9dcb69052515.zip |
missing semicolon
Diffstat (limited to 'install')
-rw-r--r-- | install/schema_postgres.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 5a97ebca1..6d7fe910b 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1661,7 +1661,7 @@ CREATE TABLE IF NOT EXISTS workerq ( workerq_uuid UUID NOT NULL, workerq_cmd text NOT NULL DEFAULT '', PRIMARY KEY (workerq_id) -) +); CREATE INDEX idx_workerq_priority ON workerq (workerq_priority); CREATE INDEX idx_workerq_reservationid ON workerq (workerq_reservationid); CREATE INDEX idx_workerq_processtimeout ON workerq (workerq_processtimeout); |