-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change the primary key to be more valid
chunk ids should only be unique to users, not necessarily across the whole server
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ALTER TABLE chunks RENAME CONSTRAINT chunks_pkey TO chunks_pkeyold; | ||
CREATE UNIQUE INDEX chunks_pkey ON chunks (id, user_id); | ||
ALTER TABLE chunks DROP CONSTRAINT chunks_pkeyold; | ||
ALTER TABLE chunks ADD PRIMARY KEY USING INDEX chunks_pkey; | ||
ALTER TABLE chunks ADD CONSTRAINT unique_id_user_id UNIQUE (id, user_id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters