INSERT INTO "ApiToken" ("ownerId", token, name)
SELECT u.id, u."apiToken", "Default"
FROM "User" u
Here, I'd like "name" to be set to a plain value "Default", but the query interprets this as "getting the Default column from User":
column "Default" does not exist
Is there any way I can achieve this?