mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 18:51:34 +03:00
27c5343707
- **Allow joining a hosted project** You can't yet do anything in a hosted project, but you can join it and look how empty it is. Release Notes: - N/A
4 lines
193 B
SQL
4 lines
193 B
SQL
-- Add migration script here
|
|
ALTER TABLE projects ALTER COLUMN host_user_id DROP NOT NULL;
|
|
ALTER TABLE projects ADD COLUMN hosted_project_id INTEGER REFERENCES hosted_projects(id) UNIQUE NULL;
|