I read about the possibility to add custom SQL for queries with sql.raw(). Is it somehow possible to add some additional SQL for migration like this? ```typescript // schema.ts export const privateSchema = pgSchema('private'); export const dataTable = privateSchema.table('data', { id: serial('id').primaryKey(), name: text('name').notNull(), }); export type InsertData = typeof dataTable.$inferInsert; export type SelectData = typeof dataTable.$inferSelect; migrate(` ALTER TABLE ${privateSchema}.${dataTable} OWNER TO postgres; `); ``` SQL when generated: ```SQL CREATE SCHEMA IF NOT EXISTS "private" CREATE TABLE IF NOT EXISTS "private"."data" ( "id" serial PRIMARY KEY NOT NULL, "name" text NOT NULL ); ALTER TABLE "private"."data" OWNER TO postgres; ```