/*
  Warnings:

  - You are about to drop the column `full_name` on the `Profile` table. All the data in the column will be lost.
  - A unique constraint covering the columns `[customer_id]` on the table `User` will be added. If there are existing duplicate values, this will fail.

*/
-- AlterTable
ALTER TABLE "Profile" DROP COLUMN "full_name";

-- AlterTable
ALTER TABLE "User" ADD COLUMN     "customer_id" TEXT;

-- CreateIndex
CREATE UNIQUE INDEX "User_customer_id_key" ON "User"("customer_id");
