You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parsing a table with an enum column with a default results in a missing table. Removing the default solves this problem.
Here is a minimum viable DDL:
CREATE TYPE public.blog_categories_visibility AS ENUM (
'public',
'protected',
'private'
);
CREATE TABLE public.blog_categories (
id integer NOT NULL,
client_id integer,
name character varying(255),
slug character varying(255),
color character varying(16),
published boolean DEFAULT true NOT NULL,
visibility public.blog_categories_visibility DEFAULT 'public'::public.blog_categories_visibility NOT NULL,
filter_id integer
);
Thanks again!
The text was updated successfully, but these errors were encountered:
Thank you for your beautiful piece of work!
Parsing a table with an enum column with a default results in a missing table. Removing the default solves this problem.
Here is a minimum viable DDL:
Thanks again!
The text was updated successfully, but these errors were encountered: