Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro committed Feb 27, 2023
1 parent 50c3712 commit 7ba0f30
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
-- "content" TEXT NOT NULL
-- );

-- Note id must be <=32 bytes string consisting entirely of unreserved URI characters
CREATE TABLE public.issue_credential_records(
"id" VARCHAR(64) NOT NULL PRIMARY KEY,
"id" VARCHAR(64) NOT NULL PRIMARY KEY,-- must be <=32 bytes string consisting entirely of unreserved URI characters
"created_at" BIGINT NOT NULL,
"updated_at" BIGINT,
"thid" VARCHAR(64) NOT NULL,
Expand All @@ -30,7 +29,7 @@ CREATE TABLE public.issue_credential_records(
"offer_credential_data" TEXT,
"request_credential_data" TEXT,
"issue_credential_data" TEXT,
"issued_credential_raw" TEXT
"issued_credential_raw" TEXT
);

CREATE TABLE public.presentation_records(
Expand Down

0 comments on commit 7ba0f30

Please sign in to comment.