Skip to content

Commit

Permalink
Fix wrong index in postgres example (#984)
Browse files Browse the repository at this point in the history
Co-authored-by: Urs Breu <urs.breu@ergon.ch>
  • Loading branch information
ubreu and ubreu-ergon authored Nov 9, 2023
1 parent 9fa541c commit c510284
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sql/pgsql.calendars.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ CREATE UNIQUE INDEX calendarinstances_principaluri_uri
CREATE UNIQUE INDEX calendarinstances_principaluri_calendarid
ON calendarinstances USING btree (principaluri, calendarid);

CREATE UNIQUE INDEX calendarinstances_principaluri_share_href
ON calendarinstances USING btree (principaluri, share_href);
CREATE UNIQUE INDEX calendarinstances_calendarid_share_href
ON calendarinstances USING btree (calendarid, share_href);

CREATE TABLE calendarsubscriptions (
id SERIAL NOT NULL,
Expand Down

0 comments on commit c510284

Please sign in to comment.