When trying to create following table:
create table example(
id uuid primary key default uuid_generate_v4(),
account hex160 not null unique,
username varchar(50) not null unique
)
Or
create table example(
id hex160 primary key,
username varchar(50) not null unique
)
I get following error
ERROR: data type hex160 has no default operator class for access method "btree"