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:
Max Brunsfeld 2025-08-25 22:21:05 -07:00 committed by GitHub
parent bf5ed6d1c9
commit 64b14ef848
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,