-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #804 from kaleido-io/identity
Move all identity APIs under /namespaces
- Loading branch information
Showing
117 changed files
with
3,965 additions
and
1,695 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
db/migrations/postgres/000091_add_namespace_to_identity_indexes.down.sql
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,7 @@ | ||
BEGIN; | ||
DROP INDEX identities_did; | ||
CREATE UNIQUE INDEX identities_did ON identities(did); | ||
|
||
DROP INDEX verifiers_value; | ||
CREATE UNIQUE INDEX verifiers_value ON verifiers(vtype, value); | ||
COMMIT; |
7 changes: 7 additions & 0 deletions
7
db/migrations/postgres/000091_add_namespace_to_identity_indexes.up.sql
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,7 @@ | ||
BEGIN; | ||
DROP INDEX identities_did; | ||
CREATE UNIQUE INDEX identities_did ON identities(namespace, did); | ||
|
||
DROP INDEX verifiers_value; | ||
CREATE UNIQUE INDEX verifiers_value ON verifiers(namespace, vtype, value); | ||
COMMIT; |
5 changes: 5 additions & 0 deletions
5
db/migrations/sqlite/000091_add_namespace_to_identity_indexes.down.sql
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 @@ | ||
DROP INDEX identities_did; | ||
CREATE UNIQUE INDEX identities_did ON identities(did); | ||
|
||
DROP INDEX verifiers_value; | ||
CREATE UNIQUE INDEX verifiers_value ON verifiers(vtype, value); |
5 changes: 5 additions & 0 deletions
5
db/migrations/sqlite/000091_add_namespace_to_identity_indexes.up.sql
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 @@ | ||
DROP INDEX identities_did; | ||
CREATE UNIQUE INDEX identities_did ON identities(namespace, did); | ||
|
||
DROP INDEX verifiers_value; | ||
CREATE UNIQUE INDEX verifiers_value ON verifiers(namespace, vtype, value); |
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
Oops, something went wrong.