Fix Sqlite newline syntax in workspace migration (#36916)
Fixes one more case where I incorrectly tried to use a `\n` escape sequence for a newline in sqlite. Release Notes: - N/A
This commit is contained in:
parent
bf5ed6d1c9
commit
64b14ef848
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
|
WHEN workspaces.local_paths_array IS NULL OR workspaces.local_paths_array = "" THEN
|
||||||
NULL
|
NULL
|
||||||
ELSE
|
ELSE
|
||||||
replace(workspaces.local_paths_array, ',', "\n")
|
replace(workspaces.local_paths_array, ',', CHAR(10))
|
||||||
END
|
END
|
||||||
END as paths,
|
END as paths,
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue