mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 02:44:49 +00: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
3 lines
193 B
SQL
3 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;
|