The following Quick SQL:
change_history
data_type vc20 /check VARCHAR2,CLOB,TSWLTZ
Generates this SQL:
create table change_history (
id number generated by default on null as identity
constraint change_history_id_pk primary key,
data_type timestamp with local time zone constraint change_history_data_type_ck
check (data_type in ('VARCHAR2','CLOB','TSWLTZ'))
);
Note that data_type is a timestamp with local time zone, not a varchar2(20) as defined.