We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When we try to update any column in Postgresql when TypeName = jsonb
DocumentSignatureMethod is type Enum
'A PostgreSQL type with the name document_signature_method was not found in the database'
CREATE TABLE public.documents ( id uuid NOT NULL, signed_at timestamp NULL, status int2 NOT NULL, pending_signature_methods jsonb DEFAULT '[]'::jsonb NOT NULL, CONSTRAINT documents_pk PRIMARY KEY (id) );
Postgresql 15; Assembly Z.EntityFramework.Plus.EFCore, Version=6.103.6.0
1. Description
When we try to update any column in Postgresql when TypeName = jsonb
DocumentSignatureMethod is type Enum
2. Exception
'A PostgreSQL type with the name document_signature_method was not found in the database'
3. Table DDL
CREATE TABLE public.documents (
id uuid NOT NULL,
signed_at timestamp NULL,
status int2 NOT NULL,
pending_signature_methods jsonb DEFAULT '[]'::jsonb NOT NULL,
CONSTRAINT documents_pk PRIMARY KEY (id)
);
Postgresql 15;
Assembly Z.EntityFramework.Plus.EFCore, Version=6.103.6.0