···11create table accounts (
22- did text primary key,
33- first_seen text not null default CURRENT_TIMESTAMP,
22+ did text primary key,
33+ first_seen text not null default CURRENT_TIMESTAMP,
44+ role text null,
55+ secret_password text null,
4657 check(did like 'did:%')
68) strict;