aboutsummaryrefslogtreecommitdiffstats
path: root/crates/pseudonyms/migrations/20250810112936_account_holder.sql
blob: 7d7c84484c15bba5ac5356ba95c2376e7241ee7d (plain)
1
2
3
4
5
6
create table account_holder (
    source varchar references entity(id),
    destination varchar references account(id),
    cre_dt_tm timestamptz not null,
    primary key (source, destination)
);