mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-30 21:16:23 +00:00
f6c85b28d5
Release Notes: - Added private alpha support for remote development. Please reach out to hi@zed.dev if you'd like to be part of shaping this feature.
9 lines
337 B
SQL
9 lines
337 B
SQL
CREATE TABLE remote_projects (
|
|
id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
|
|
channel_id INT NOT NULL REFERENCES channels(id),
|
|
dev_server_id INT NOT NULL REFERENCES dev_servers(id),
|
|
name TEXT NOT NULL,
|
|
path TEXT NOT NULL
|
|
);
|
|
|
|
ALTER TABLE projects ADD COLUMN remote_project_id INTEGER REFERENCES remote_projects(id);
|