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
dept
name
# settings = {prefix: "prefix", schema: "schema"}
Output:
create table schema.prefix_dept (
id number generated by default on null as identity
constraint schema.prefix_dept_id_pk primary key,
name varchar2(255 char)
);