* add copy files setting * DB prepare * Move copy_project_files into the container trait so we remember to implement on cloud * Autocomplete on the FE for files * Clippy * Lint and fmt --------- Co-authored-by: Louis Knight-Webb <louis@bloop.ai>
3 lines
199 B
SQL
3 lines
199 B
SQL
-- Add copy_files column to projects table
|
|
-- This field stores comma-separated file paths to copy from the original project directory to the worktree
|
|
ALTER TABLE projects ADD COLUMN copy_files TEXT; |