Skip to content

Commit

Permalink
Fix:remove unique from index table
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbet committed Oct 23, 2024
1 parent 0e7fc58 commit 558b24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker-files/pgCreateTable.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE TABLE user_data (
lastUpdateDate TIMESTAMP,
docValue JSON
);
CREATE UNIQUE INDEX doc_key_idx_orga ON user_data (docKey, docZone,docOrganization);
CREATE INDEX doc_key_idx_orga ON user_data (docKey, docZone,docOrganization);

DROP TABLE IF EXISTS user_data_readers;

Expand Down

0 comments on commit 558b24a

Please sign in to comment.