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
Hello create table event_types ( id number constraint event_types_id_pk primary key ) ;
and create table event_types ( id number generated by default on null as identity ) ;
unfortunately return empty array
those could also be written like this
create table event_types ( id number generated by default on null as identity constraint event_types_id_pk primary key ) ;
python 3.10.12 , v0.30.0
The text was updated successfully, but these errors were encountered:
Hello
create table event_types ( id number constraint event_types_id_pk primary key ) ;
and
create table event_types ( id number generated by default on null as identity ) ;
unfortunately return empty array
those could also be written like this
create table event_types ( id number generated by default on null as identity constraint event_types_id_pk primary key ) ;
python 3.10.12 , v0.30.0
The text was updated successfully, but these errors were encountered: