feat: attempt to fix the crud with auth

This commit is contained in:
Riccardo
2024-07-07 17:47:57 +02:00
parent ea73368cc9
commit 637520dbf2
27 changed files with 622 additions and 53 deletions

View File

@@ -0,0 +1,13 @@
/*
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");