Fix sqlite newline syntax in workspace migration

This commit is contained in:
Max Brunsfeld 2025-08-25 22:06:45 -07:00
parent bf5ed6d1c9
commit 5e592f615c

View file

@ -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,