This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-auth0/prisma/migrations/20240707152629_string_id_for_user/migration.sql
2024-07-07 17:47:57 +02:00

14 lines
384 B
SQL

/*
Warnings:
- The primary key for the `CustomerForm` table will be changed. If it partially fails, the table could be left without primary key constraint.
*/
-- DropIndex
DROP INDEX "CustomerForm_id_key";
-- AlterTable
ALTER TABLE "CustomerForm" DROP CONSTRAINT "CustomerForm_pkey",
ALTER COLUMN "id" SET DATA TYPE TEXT,
ADD CONSTRAINT "CustomerForm_pkey" PRIMARY KEY ("id");