News

-- Create crypto_wallet table CREATE TABLE IF NOT EXISTS public.crypto_wallet ( id UUID PRIMARY KEY DEFAULT gen_random_uuid (), account_id TEXT NOT NULL, address TEXT NOT NULL, currency TEXT NOT NULL, ...
CREATE TABLE public.account_transaction ( transaction_id SERIAL PRIMARY KEY, transaction_group_id INT NOT NULL,-- To group the pair of transactions (sender & receiver) financial_account_id INT NOT ...