/* Warnings: - You are about to drop the column `accessToken` on the `Account` table. All the data in the column will be lost. - You are about to drop the column `accountId` on the `Account` table. All the data in the column will be lost. - You are about to drop the column `expiresAt` on the `Account` table. All the data in the column will be lost. - You are about to drop the column `password` on the `Account` table. All the data in the column will be lost. - You are about to drop the column `providerId` on the `Account` table. All the data in the column will be lost. - You are about to drop the column `refreshToken` on the `Account` table. All the data in the column will be lost. - A unique constraint covering the columns `[token]` on the table `Verification` will be added. If there are existing duplicate values, this will fail. - Added the required column `providerAccountId` to the `Account` table without a default value. This is not possible if the table is not empty. - Added the required column `type` to the `Account` table without a default value. This is not possible if the table is not empty. - Made the column `provider` on table `Account` required. This step will fail if there are existing NULL values in that column. - Added the required column `value` to the `Verification` table without a default value. This is not possible if the table is not empty. */ -- AlterTable ALTER TABLE "Account" DROP COLUMN "accessToken", DROP COLUMN "accountId", DROP COLUMN "expiresAt", DROP COLUMN "password", DROP COLUMN "providerId", DROP COLUMN "refreshToken", ADD COLUMN "access_token" TEXT, ADD COLUMN "expires_at" INTEGER, ADD COLUMN "id_token" TEXT, ADD COLUMN "providerAccountId" TEXT NOT NULL, ADD COLUMN "refresh_token" TEXT, ADD COLUMN "scope" TEXT, ADD COLUMN "session_state" TEXT, ADD COLUMN "token_type" TEXT, ADD COLUMN "type" TEXT NOT NULL, ALTER COLUMN "provider" SET NOT NULL; -- AlterTable ALTER TABLE "Verification" ADD COLUMN "value" TEXT NOT NULL; -- CreateIndex CREATE UNIQUE INDEX "Verification_token_key" ON "Verification"("token");