-- AlterTable ALTER TABLE "CalendarConnection" ADD COLUMN "calendars" JSONB; -- AlterTable ALTER TABLE "Task" ADD COLUMN "scheduledDate" TIMESTAMP(3); -- AlterTable ALTER TABLE "User" ADD COLUMN "timezone" TEXT NOT NULL DEFAULT 'UTC'; -- CreateIndex CREATE INDEX "Task_userId_scheduledDate_idx" ON "Task"("userId", "scheduledDate");