diff options
Diffstat (limited to 'crates/pseudonyms/migrations/20250810112936_account_holder.sql')
-rw-r--r-- | crates/pseudonyms/migrations/20250810112936_account_holder.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/pseudonyms/migrations/20250810112936_account_holder.sql b/crates/pseudonyms/migrations/20250810112936_account_holder.sql new file mode 100644 index 0000000..7d7c844 --- /dev/null +++ b/crates/pseudonyms/migrations/20250810112936_account_holder.sql @@ -0,0 +1,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) +); |