Fix sqlite newline syntax in workspace migration
This commit is contained in:
parent
bf5ed6d1c9
commit
5e592f615c
1 changed files with 1 additions and 1 deletions
|
@ -553,7 +553,7 @@ impl Domain for WorkspaceDb {
|
|||
WHEN workspaces.local_paths_array IS NULL OR workspaces.local_paths_array = "" THEN
|
||||
NULL
|
||||
ELSE
|
||||
replace(workspaces.local_paths_array, ',', "\n")
|
||||
replace(workspaces.local_paths_array, ',', CHAR(10))
|
||||
END
|
||||
END as paths,
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue