Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1DELETE FROM remote_projects; 2DELETE FROM dev_servers; 3 4ALTER TABLE dev_servers DROP COLUMN channel_id; 5ALTER TABLE dev_servers ADD COLUMN user_id INT NOT NULL REFERENCES users(id); 6 7ALTER TABLE remote_projects DROP COLUMN channel_id;