77 lines
3.6 KiB
SQL
77 lines
3.6 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `access_token` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `expires_at` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `id_token` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `providerAccountId` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `refresh_token` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `scope` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `session_state` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `token_type` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `type` on the `Account` table. All the data in the column will be lost.
|
|
- You are about to drop the column `expires` on the `Session` table. All the data in the column will be lost.
|
|
- You are about to drop the column `password` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the `VerificationToken` table. If the table is not empty, all the data it contains will be lost.
|
|
- Added the required column `accountId` to the `Account` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `providerId` to the `Account` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `expiresAt` to the `Session` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `updatedAt` to the `Session` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "Account" DROP CONSTRAINT "Account_userId_fkey";
|
|
|
|
-- DropForeignKey
|
|
ALTER TABLE "Session" DROP CONSTRAINT "Session_userId_fkey";
|
|
|
|
-- DropIndex
|
|
DROP INDEX "Account_provider_providerAccountId_key";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Account" DROP COLUMN "access_token",
|
|
DROP COLUMN "expires_at",
|
|
DROP COLUMN "id_token",
|
|
DROP COLUMN "providerAccountId",
|
|
DROP COLUMN "refresh_token",
|
|
DROP COLUMN "scope",
|
|
DROP COLUMN "session_state",
|
|
DROP COLUMN "token_type",
|
|
DROP COLUMN "type",
|
|
ADD COLUMN "accessToken" TEXT,
|
|
ADD COLUMN "accountId" TEXT NOT NULL,
|
|
ADD COLUMN "expiresAt" TIMESTAMP(3),
|
|
ADD COLUMN "providerId" TEXT NOT NULL,
|
|
ADD COLUMN "refreshToken" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Session" DROP COLUMN "expires",
|
|
ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN "expiresAt" TIMESTAMP(3) NOT NULL,
|
|
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "password",
|
|
ALTER COLUMN "email" DROP NOT NULL;
|
|
|
|
-- DropTable
|
|
DROP TABLE "VerificationToken";
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "Verification" (
|
|
"id" TEXT NOT NULL,
|
|
"identifier" TEXT NOT NULL,
|
|
"token" TEXT NOT NULL,
|
|
"expiresAt" TIMESTAMP(3) NOT NULL,
|
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" TIMESTAMP(3) NOT NULL,
|
|
|
|
CONSTRAINT "Verification_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Account" ADD CONSTRAINT "Account_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Session" ADD CONSTRAINT "Session_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|