Best approach for data migration: moving data from two columns to JSONB
Hi Drizzle community! 
I'm working on a schema migration where I need to:

I'm working on a schema migration where I need to:
- Move data from two existing string columns (
old_col1,old_col2) into a new JSONB column (new_jsonb_col) - Drop the old columns
- Ensure no schema drift
- Update TypeScript schema (add JSONB col, remove old cols)
- Run
drizzle-kit generate - Manually edit the generated migration to add data transformation steps:```sql-- Add new columnALTER TABLE "table" ADD COLUMN "new_jsonb_col" JSONB;--> statement-breakpoint-- Transform dataUPDATE "table" SET "new_jsonb_col" = jsonb_build_object( 'old_col1_value', "old_col1", 'old_col2_value', "old_col2");--> statement-breakpoint-- Make NOT NULLALTER TABLE "table" ALTER COLUMN "new_jsonb_col" SET NOT NULL;--> statement-breakpoint-- Drop old columnsALTER TABLE "table" DROP COLUMN "old_col1";--> statement-breakpointALTER TABLE "table" DROP COLUMN "old_col2";```
- Is this the recommended approach for complex data migrations?
- Should I use
drizzle-kit generate --custominstead? - Are there any gotchas I should be aware of?