Files
vibe-kanban/crates/db/.sqlx/query-283a8ef6493346c9ee3bf649e977849eb361d801cdfc8180a8f082269a6bd649.json
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

69 lines
1.5 KiB
JSON

{
"db_name": "SQLite",
"query": "UPDATE projects SET name = $2, git_repo_path = $3, setup_script = $4, dev_script = $5, cleanup_script = $6, copy_files = $7 WHERE id = $1 RETURNING id as \"id!: Uuid\", name, git_repo_path, setup_script, dev_script, cleanup_script, copy_files, created_at as \"created_at!: DateTime<Utc>\", updated_at as \"updated_at!: DateTime<Utc>\"",
"describe": {
"columns": [
{
"name": "id!: Uuid",
"ordinal": 0,
"type_info": "Blob"
},
{
"name": "name",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "git_repo_path",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "setup_script",
"ordinal": 3,
"type_info": "Text"
},
{
"name": "dev_script",
"ordinal": 4,
"type_info": "Text"
},
{
"name": "cleanup_script",
"ordinal": 5,
"type_info": "Text"
},
{
"name": "copy_files",
"ordinal": 6,
"type_info": "Text"
},
{
"name": "created_at!: DateTime<Utc>",
"ordinal": 7,
"type_info": "Text"
},
{
"name": "updated_at!: DateTime<Utc>",
"ordinal": 8,
"type_info": "Text"
}
],
"parameters": {
"Right": 7
},
"nullable": [
true,
false,
false,
true,
true,
true,
true,
false,
false
]
},
"hash": "283a8ef6493346c9ee3bf649e977849eb361d801cdfc8180a8f082269a6bd649"
}