Files
vibe-kanban/crates/db/migrations/20250811000000_add_copy_files_to_projects.sql
Kento Sugita e06b9a329e add copy files setting (#445)
* 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>
2025-08-12 23:29:56 +01:00

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;