/*
  Warnings:

  - Added the required column `orderId` to the `Subscriptions` table without a default value. This is not possible if the table is not empty.
  - Added the required column `productId` to the `Subscriptions` table without a default value. This is not possible if the table is not empty.
  - Added the required column `startDate` to the `Subscriptions` table without a default value. This is not possible if the table is not empty.
  - Added the required column `status` to the `Subscriptions` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE "public"."Subscriptions" ADD COLUMN     "orderId" TEXT NOT NULL,
ADD COLUMN     "productId" TEXT NOT NULL,
ADD COLUMN     "startDate" TIMESTAMP(3) NOT NULL,
ADD COLUMN     "status" TEXT NOT NULL;
