mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
- Adds column `favorite` to workspaces table - Adds API endpoints to favorite/unfavorite workspaces - Modifies sorting order to return owners' favorite workspaces first
4 lines
193 B
SQL
4 lines
193 B
SQL
ALTER TABLE ONLY workspaces
|
|
ADD COLUMN favorite boolean NOT NULL DEFAULT false;
|
|
COMMENT ON COLUMN workspaces.favorite IS 'Favorite is true if the workspace owner has favorited the workspace.';
|