-
-
Notifications
You must be signed in to change notification settings - Fork 964
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
persistence/sql/migrations/sql/20241106142200000001_identities.autocommit.cockroach.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CREATE INDEX identity_credential_identifiers_nid_ici_idx | ||
ON identity_credentials_identifiers (nid ASC, identity_credential_id ASC) STORING (identifier); | ||
CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_ici_idx | ||
ON identity_credential_identifiers (nid ASC, identity_credential_id ASC) STORING (identifier); |
2 changes: 1 addition & 1 deletion
2
persistence/sql/migrations/sql/20241106142200000001_identities.autocommit.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 |
---|---|---|
@@ -1 +1 @@ | ||
DROP INDEX identity_credential_identifiers_nid_ici_idx; | ||
DROP INDEX IF EXISTS identity_credential_identifiers_nid_ici_idx; |
2 changes: 1 addition & 1 deletion
2
persistence/sql/migrations/sql/20241106142200000001_identities.autocommit.mysql.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 |
---|---|---|
@@ -1 +1 @@ | ||
DROP INDEX identity_credential_identifiers_nid_ici_idx ON identity_credentials_identifiers; | ||
DROP INDEX IF EXISTS identity_credential_identifiers_nid_ici_idx ON identity_credential_identifiers; |
4 changes: 2 additions & 2 deletions
4
persistence/sql/migrations/sql/20241106142200000001_identities.autocommit.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CREATE INDEX identity_credential_identifiers_nid_ici_idx | ||
ON identity_credentials_identifiers (nid ASC, identity_credential_id AS); | ||
CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_ici_idx | ||
ON identity_credential_identifiers (nid ASC, identity_credential_id ASC); |