mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-04-22 22:27:56 +00:00
7 lines
256 B
SQL
7 lines
256 B
SQL
-- Add wallet_address column to users table
|
|
ALTER TABLE public.users
|
|
ADD COLUMN IF NOT EXISTS wallet_address TEXT;
|
|
|
|
-- Add comment to column
|
|
COMMENT ON COLUMN public.users.wallet_address IS 'Polkadot/Substrate wallet address for blockchain transactions';
|