diff options
author | Waitman Gobble <waitman@waitman.net> | 2017-09-06 16:12:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 16:12:57 -0500 |
commit | fee65f0c691ebf61b67eead8d85bacd1c967f314 (patch) | |
tree | ed79cdeefa9a504aa72e19cb43ea6caf109f886b | |
parent | 643f515eaf21c05e03f0f51a332c18e0acdc403d (diff) | |
download | volse-hubzilla-fee65f0c691ebf61b67eead8d85bacd1c967f314.tar.gz volse-hubzilla-fee65f0c691ebf61b67eead8d85bacd1c967f314.tar.bz2 volse-hubzilla-fee65f0c691ebf61b67eead8d85bacd1c967f314.zip |
fix bogus semicolon
Line 655 should have comma instead of semicolon
-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 a9950ce21..0988bfa4a 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -652,7 +652,7 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `received` (`received`), KEY `uid_commented` (`uid`, `commented`), KEY `uid_created` (`uid`, `created`), - KEY `uid_item_unseen` (`uid`, `item_unseen`); + KEY `uid_item_unseen` (`uid`, `item_unseen`), KEY `aid` (`aid`), KEY `owner_xchan` (`owner_xchan`), KEY `author_xchan` (`author_xchan`), |