```ts export const platform = pgTable("platform", { id: integer("id").unique().primaryKey(), name: text("name"), slug: text("slug"), symbol: text("symbol"), tokens: json("tokens").$type<number[]>(), }); ``` ```ts const platformUpdateResult = await db .update(platformSchema) .set({ tokens: sql`${platform.tokens} || ${token.id}` }) .where(eq(platformSchema.id, token.platform)) .returning(); ``` this is not working