Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1ALTER TABLE channel_members ADD COLUMN role TEXT; 2UPDATE channel_members SET role = CASE WHEN admin THEN 'admin' ELSE 'member' END; 3 4ALTER TABLE channels ADD COLUMN visibility TEXT NOT NULL DEFAULT 'members';