8 lines
187 B
SQL

-- CreateTable
CREATE TABLE "PushNotification" (
"userId" INTEGER NOT NULL,
"subscription" TEXT NOT NULL,
CONSTRAINT "PushNotification_pkey" PRIMARY KEY ("userId")
);