Remove not null constraint request_log_id column (#1917)

This commit is contained in:
Pavlo Tkach 2023-01-23 09:37:20 -05:00 committed by GitHub
parent e6974a98bc
commit c4b7929506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 27 additions and 12 deletions

View file

@ -488,7 +488,7 @@
scope text not null,
acquired_time timestamptz not null,
expiration_time timestamptz not null,
request_log_id text not null,
request_log_id text,
primary key (resource_name, scope)
);