/* Warnings: - The primary key for the `Session` table will be changed. If it partially fails, the table could be left without primary key constraint. - The primary key for the `Token` table will be changed. If it partially fails, the table could be left without primary key constraint. - The primary key for the `User` table will be changed. If it partially fails, the table could be left without primary key constraint. - A unique constraint covering the columns `[hashedToken,type]` on the table `Token` will be added. If there are existing duplicate values, this will fail. - Changed the type of `type` on the `Token` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required. */ -- CreateEnum CREATE TYPE "TokenType" AS ENUM ('RESET_PASSWORD'); -- CreateEnum CREATE TYPE "Direction" AS ENUM ('Inbound', 'Outbound'); -- CreateEnum CREATE TYPE "MessageStatus" AS ENUM ('Queued', 'Sending', 'Sent', 'Failed', 'Delivered', 'Undelivered', 'Receiving', 'Received', 'Accepted', 'Scheduled', 'Read', 'PartiallyDelivered', 'Canceled'); -- CreateEnum CREATE TYPE "CallStatus" AS ENUM ('Queued', 'Ringing', 'InProgress', 'Completed', 'Busy', 'Failed', 'NoAnswer', 'Canceled'); -- DropForeignKey ALTER TABLE "Session" DROP CONSTRAINT "Session_userId_fkey"; -- DropForeignKey ALTER TABLE "Token" DROP CONSTRAINT "Token_userId_fkey"; -- AlterTable ALTER TABLE "Session" DROP CONSTRAINT "Session_pkey", ALTER COLUMN "id" DROP DEFAULT, ALTER COLUMN "id" SET DATA TYPE TEXT, ALTER COLUMN "createdAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "updatedAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "expiresAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "userId" SET DATA TYPE TEXT, ADD PRIMARY KEY ("id"); DROP SEQUENCE "Session_id_seq"; -- AlterTable ALTER TABLE "Token" DROP CONSTRAINT "Token_pkey", ALTER COLUMN "id" DROP DEFAULT, ALTER COLUMN "id" SET DATA TYPE TEXT, ALTER COLUMN "createdAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "updatedAt" SET DATA TYPE TIMESTAMPTZ, DROP COLUMN "type", ADD COLUMN "type" "TokenType" NOT NULL, ALTER COLUMN "expiresAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "userId" SET DATA TYPE TEXT, ADD PRIMARY KEY ("id"); DROP SEQUENCE "Token_id_seq"; -- AlterTable ALTER TABLE "User" DROP CONSTRAINT "User_pkey", ALTER COLUMN "id" DROP DEFAULT, ALTER COLUMN "id" SET DATA TYPE TEXT, ALTER COLUMN "createdAt" SET DATA TYPE TIMESTAMPTZ, ALTER COLUMN "updatedAt" SET DATA TYPE TIMESTAMPTZ, ADD PRIMARY KEY ("id"); DROP SEQUENCE "User_id_seq"; -- CreateTable CREATE TABLE "Customer" ( "id" TEXT NOT NULL, "createdAt" TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMPTZ NOT NULL, "encryptionKey" TEXT NOT NULL, "accountSid" TEXT, "authToken" TEXT, "twimlAppSid" TEXT, "paddleCustomerId" TEXT, "paddleSubscriptionId" TEXT, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Message" ( "id" TEXT NOT NULL, "sentAt" TIMESTAMPTZ NOT NULL, "content" TEXT NOT NULL, "from" TEXT NOT NULL, "to" TEXT NOT NULL, "direction" "Direction" NOT NULL, "status" "MessageStatus" NOT NULL, "twilioSid" TEXT, "customerId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "PhoneCall" ( "id" TEXT NOT NULL, "createdAt" TIMESTAMPTZ NOT NULL, "twilioSid" TEXT NOT NULL, "from" TEXT NOT NULL, "to" TEXT NOT NULL, "status" "CallStatus" NOT NULL, "direction" "Direction" NOT NULL, "duration" TEXT NOT NULL, "customerId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "PhoneNumber" ( "id" TEXT NOT NULL, "createdAt" TIMESTAMPTZ NOT NULL, "phoneNumberSid" TEXT NOT NULL, "phoneNumber" TEXT NOT NULL, "customerId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateIndex CREATE UNIQUE INDEX "Token.hashedToken_type_unique" ON "Token"("hashedToken", "type"); -- AddForeignKey ALTER TABLE "Session" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Token" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Customer" ADD FOREIGN KEY ("id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Message" ADD FOREIGN KEY ("customerId") REFERENCES "Customer"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "PhoneCall" ADD FOREIGN KEY ("customerId") REFERENCES "Customer"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "PhoneNumber" ADD FOREIGN KEY ("customerId") REFERENCES "Customer"("id") ON DELETE CASCADE ON UPDATE CASCADE;