blob: 9adc51a0db90e6ca6ef96bfadabbf2d62c58cd25 (
plain)
1
2
3
4
5
6
7
8
9
|
-- Convert push_token from text to text[] array
-- First, create the new column
ALTER TABLE "users" ADD COLUMN "push_tokens" text[] DEFAULT '{}';--> statement-breakpoint
-- Migrate existing single token to array format (skip null values)
UPDATE "users" SET "push_tokens" = ARRAY[push_token]::text[] WHERE push_token IS NOT NULL;--> statement-breakpoint
-- Drop the old column
ALTER TABLE "users" DROP COLUMN "push_token";
|