20 lines
1.1 KiB
SQL
20 lines
1.1 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `opportunityId` to the `GeneratedQuotes` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `quoteFileName` to the `GeneratedQuotes` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `quoteRegenData` to the `GeneratedQuotes` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "GeneratedQuotes" ADD COLUMN "createdById" TEXT,
|
|
ADD COLUMN "opportunityId" TEXT NOT NULL,
|
|
ADD COLUMN "quoteFileName" TEXT NOT NULL,
|
|
ADD COLUMN "quoteRegenData" JSONB NOT NULL;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "GeneratedQuotes" ADD CONSTRAINT "GeneratedQuotes_opportunityId_fkey" FOREIGN KEY ("opportunityId") REFERENCES "Opportunity"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "GeneratedQuotes" ADD CONSTRAINT "GeneratedQuotes_createdById_fkey" FOREIGN KEY ("createdById") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE;
|