File size: 199 Bytes
8059bf0
 
 
 
 
 
 
1
2
3
4
5
6
7
8
-- 028_add_account_notes.sql
-- Add optional admin notes for accounts.

ALTER TABLE accounts
ADD COLUMN IF NOT EXISTS notes TEXT;

COMMENT ON COLUMN accounts.notes IS 'Admin-only notes for account';