Skip to content

Commit

Permalink
fix: ih_schema.sql to comply with eclipse-edc/IdentityHub#451 (#333)
Browse files Browse the repository at this point in the history
Fix `ih_schema.sql` to comply with eclipse-edc/IdentityHub#451
  • Loading branch information
ligaz authored Sep 13, 2024
1 parent 0577dbc commit 00167f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deployment/assets/postgres/ih_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ CREATE TABLE IF NOT EXISTS keypair_resource
rotation_duration BIGINT, -- duration during which this keypair is in a transitional state (rotated, not yet deactivated)
serialized_public_key VARCHAR NOT NULL, -- serialized public key (PEM, JWK,...)
private_key_alias VARCHAR NOT NULL, -- alias under which the private key is stored in the HSM/Vault
state INT NOT NULL DEFAULT 100 -- KeyPairState
state INT NOT NULL DEFAULT 100, -- KeyPairState
key_context VARCHAR --the key context, will end up in the VerificationMethod of the DID Document
);

CREATE TABLE IF NOT EXISTS participant_context
Expand Down

0 comments on commit 00167f2

Please sign in to comment.