diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-07-05 09:52:41 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-07-05 09:52:41 +0200 |
commit | 9e497cde4039666b49347ed3aad6d080a13ad9c2 (patch) | |
tree | 4b9345a9e03cc5dfdca0768a51d33f37f110eb2b | |
parent | 038c928b9b863ac890c5eebf7d1305bb0403567a (diff) | |
download | volse-hubzilla-9e497cde4039666b49347ed3aad6d080a13ad9c2.tar.gz volse-hubzilla-9e497cde4039666b49347ed3aad6d080a13ad9c2.tar.bz2 volse-hubzilla-9e497cde4039666b49347ed3aad6d080a13ad9c2.zip |
missing semicolon
-rw-r--r-- | install/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index ad4b27387..d5e1d9df0 100644 --- a/install/update.php +++ b/install/update.php @@ -2589,7 +2589,7 @@ function update_r1191() { $r8 = q("ALTER TABLE ONLY addressbookchanges ADD CONSTRAINT addressbookchanges_pkey PRIMARY KEY (id);"); - $r9 = q("CREATE INDEX addressbookchanges_addressbookid_synctoken_ix ON addressbookchanges USING btree (addressbookid, synctoken);") + $r9 = q("CREATE INDEX addressbookchanges_addressbookid_synctoken_ix ON addressbookchanges USING btree (addressbookid, synctoken);"); $r10 = q("CREATE TABLE calendarobjects ( id SERIAL NOT NULL, |