-- AlterTable: Add phone column to Lead
ALTER TABLE "Lead" ADD COLUMN "phone" TEXT;

-- AlterTable: Make message required (update any NULL values first)
UPDATE "Lead" SET "message" = '' WHERE "message" IS NULL;
ALTER TABLE "Lead" ALTER COLUMN "message" SET NOT NULL;
