72 lines
2.7 KiB
SQL
72 lines
2.7 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `createdAt` on the `Session` table. All the data in the column will be lost.
|
|
- You are about to drop the column `expiresAt` on the `Session` table. All the data in the column will be lost.
|
|
- You are about to drop the column `updatedAt` on the `Session` table. All the data in the column will be lost.
|
|
- The `emailVerified` column on the `User` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
|
- A unique constraint covering the columns `[sessionToken]` on the table `Session` will be added. If there are existing duplicate values, this will fail.
|
|
- Added the required column `expires` to the `Session` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `sessionToken` to the `Session` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "Session" DROP CONSTRAINT "Session_userId_fkey";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Session" DROP COLUMN "createdAt",
|
|
DROP COLUMN "expiresAt",
|
|
DROP COLUMN "updatedAt",
|
|
ADD COLUMN "expires" TIMESTAMP(3) NOT NULL,
|
|
ADD COLUMN "sessionToken" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "image" TEXT,
|
|
ADD COLUMN "password" TEXT,
|
|
DROP COLUMN "emailVerified",
|
|
ADD COLUMN "emailVerified" TIMESTAMP(3),
|
|
ALTER COLUMN "name" DROP NOT NULL;
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "Account" (
|
|
"id" TEXT NOT NULL,
|
|
"userId" TEXT NOT NULL,
|
|
"provider" TEXT NOT NULL,
|
|
"providerAccountId" TEXT NOT NULL,
|
|
"type" TEXT NOT NULL,
|
|
"refresh_token" TEXT,
|
|
"access_token" TEXT,
|
|
"expires_at" INTEGER,
|
|
"token_type" TEXT,
|
|
"scope" TEXT,
|
|
"id_token" TEXT,
|
|
"session_state" TEXT,
|
|
|
|
CONSTRAINT "Account_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "VerificationToken" (
|
|
"identifier" TEXT NOT NULL,
|
|
"token" TEXT NOT NULL,
|
|
"expires" TIMESTAMP(3) NOT NULL
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Account_provider_providerAccountId_key" ON "Account"("provider", "providerAccountId");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "VerificationToken_token_key" ON "VerificationToken"("token");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "VerificationToken_identifier_token_key" ON "VerificationToken"("identifier", "token");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Session_sessionToken_key" ON "Session"("sessionToken");
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Account" ADD CONSTRAINT "Account_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Session" ADD CONSTRAINT "Session_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|