Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1-- Add migration script here 2 3ALTER TABLE projects 4 DROP CONSTRAINT projects_room_id_fkey, 5 ADD CONSTRAINT projects_room_id_fkey 6 FOREIGN KEY (room_id) 7 REFERENCES rooms (id) 8 ON DELETE CASCADE;