Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pollux): Undo edit migration for revocation status lists #937

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ CREATE TYPE public.enum_credential_status_list_purpose AS ENUM (

CREATE TABLE public.credential_status_lists
(
id UUID PRIMARY KEY default gen_random_uuid(),
wallet_id UUID NOT NULL,
issuer VARCHAR NOT NULL,
issued TIMESTAMP WITH TIME ZONE NOT NULL,
purpose public.enum_credential_status_list_purpose NOT NULL,
status_list_credential JSON NOT NULL,
size INTEGER NOT NULL DEFAULT 131072,
last_used_index INTEGER NOT NULL DEFAULT 0,
created_at TIMESTAMP WITH TIME ZONE NOT NULL default now(),
updated_at TIMESTAMP WITH TIME ZONE NOT NULL default now()
id UUID PRIMARY KEY default gen_random_uuid(),
wallet_id UUID NOT NULL,
issuer VARCHAR NOT NULL,
issued TIMESTAMP WITH TIME ZONE NOT NULL,
purpose public.enum_credential_status_list_purpose NOT NULL,
encoded_list TEXT NOT NULL,
proof JSON NOT NULL,
created_at TIMESTAMP WITH TIME ZONE NOT NULL default now(),
updated_at TIMESTAMP WITH TIME ZONE NOT NULL default now()
);

CREATE INDEX credential_status_lists_wallet_id_index ON public.credential_status_lists (wallet_id);
Expand All @@ -28,7 +27,6 @@ CREATE TABLE public.credentials_in_status_list
status_list_index INTEGER NOT NULL,
-- is revoked or suspended
is_canceled BOOLEAN NOT NULL default false,
is_processed BOOLEAN NOT NULL default false,
created_at TIMESTAMP WITH TIME ZONE NOT NULL default now(),
updated_at TIMESTAMP WITH TIME ZONE NOT NULL default now(),

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ALTER TABLE public.credential_status_lists
DROP COLUMN encoded_list,
DROP COLUMN proof;

ALTER TABLE public.credential_status_lists
ADD COLUMN status_list_credential JSON NOT NULL,
ADD COLUMN size INTEGER NOT NULL DEFAULT 131072,
ADD COLUMN last_used_index INTEGER NOT NULL DEFAULT 0;

ALTER TABLE public.credentials_in_status_list
ADD COLUMN is_processed BOOLEAN NOT NULL DEFAULT false;
Loading