There is no error at all, it just doesn't import all of the fields.
There are some non-standard field types (uuid, citext):
create table wevo."user"
(
id bigserial not null
constraint user_pkey
primary key,
public_id uuid default uuid_generate_v4() not null,
first_name text not null,
email_address citext not null,
password_hash text not null,
date_created timestamp with time zone default now() not null,
is_active boolean default true not null,
is_admin boolean default false not null,
last_name text not null
)
;
The fields that show up when I do Discover attributes are just current_user and company, which I don't even think it's getting from that table.
I'm happy to show you if you want to Skype. I'm in Moscow, so GMT +2.