-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
PostgreSQL reversed engineer schema includes nextval as a function, like below. Is it possible to support this?
CREATE TABLE pagila_dev.actor (
actor_id integer DEFAULT nextval('pagila_dev.actor_actor_id_seq'::regclass) NOT NULL,
first_name text NOT NULL,
last_name text NOT NULL,
last_update timestamp with time zone DEFAULT now() NOT NULL
)