jws-backend/prisma/migrations/20241028033825_update_structure/migration.sql
2024-10-28 10:51:51 +07:00

15 lines
520 B
SQL

/*
Warnings:
- You are about to drop the column `agent` on the `CustomerBranch` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "CustomerBranch" DROP COLUMN "agent",
ADD COLUMN "agentUserId" TEXT;
-- AlterTable
ALTER TABLE "ProductGroup" ADD COLUMN "shared" BOOLEAN NOT NULL DEFAULT false;
-- AddForeignKey
ALTER TABLE "CustomerBranch" ADD CONSTRAINT "CustomerBranch_agentUserId_fkey" FOREIGN KEY ("agentUserId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE;