diff options
author | Mario <mario@mariovavti.com> | 2023-08-14 07:38:36 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-08-27 19:56:10 +0200 |
commit | 5fc58fb10aee75d0ba78400bf71acf7970499a1e (patch) | |
tree | 72a85490b67fcbe0bb898b969db084f54b13852f | |
parent | 4e2ae9cd4e3137f3a264c0345692708c00d2eb45 (diff) | |
download | volse-hubzilla-5fc58fb10aee75d0ba78400bf71acf7970499a1e.tar.gz volse-hubzilla-5fc58fb10aee75d0ba78400bf71acf7970499a1e.tar.bz2 volse-hubzilla-5fc58fb10aee75d0ba78400bf71acf7970499a1e.zip |
missing semicolon
(cherry picked from commit b40c38f58c6ff780b518e07a836dd683c971b5b3)
-rw-r--r-- | install/schema_mysql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 0f407960d..71a5c8f92 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1629,4 +1629,4 @@ CREATE TABLE IF NOT EXISTS workerq ( KEY workerq_reservationid (workerq_reservationid), KEY workerq_processtimeout (workerq_uuid), KEY workerq_uuid (workerq_processtimeout) -) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4 +) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4; |