Skip to content

Commit

Permalink
chore: synchronize workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 6, 2024
1 parent 8a14b0d commit a794b69
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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);
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;
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;
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);

0 comments on commit a794b69

Please sign in to comment.