From dbff6fa4e5684d8636fd46ecadfe5874a253bd49 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 10 Aug 2025 13:45:11 +0200 Subject: feat(pseudonyms): serve api --- crates/pseudonyms/migrations/20250810112936_account_holder.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 crates/pseudonyms/migrations/20250810112936_account_holder.sql (limited to 'crates/pseudonyms/migrations/20250810112936_account_holder.sql') 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) +); -- cgit v1.2.3