mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 04:27:40 +00:00
e0c83a1d32
Release Notes: - Made remote projects per-user instead of per-channel. If you'd like to be part of the remote development alpha, please email hi@zed.dev. --------- Co-authored-by: Bennet Bo Fenner <53836821+bennetbo@users.noreply.github.com> Co-authored-by: Bennet <bennetbo@gmx.de> Co-authored-by: Nate Butler <1714999+iamnbutler@users.noreply.github.com> Co-authored-by: Nate Butler <iamnbutler@gmail.com>
7 lines
234 B
SQL
7 lines
234 B
SQL
DELETE FROM remote_projects;
|
|
DELETE FROM dev_servers;
|
|
|
|
ALTER TABLE dev_servers DROP COLUMN channel_id;
|
|
ALTER TABLE dev_servers ADD COLUMN user_id INT NOT NULL REFERENCES users(id);
|
|
|
|
ALTER TABLE remote_projects DROP COLUMN channel_id;
|