mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
37 lines
1.3 KiB
SQL
37 lines
1.3 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `updatedAt` to the `Account` 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.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Account" ADD COLUMN "accessTokenExpiresAt" TIMESTAMP(3),
|
|
ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN "password" TEXT,
|
|
ADD COLUMN "refreshTokenExpiresAt" TIMESTAMP(3),
|
|
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL,
|
|
ALTER COLUMN "type" SET DEFAULT 'legacy';
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Session" ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN "ipAddress" TEXT,
|
|
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL,
|
|
ADD COLUMN "userAgent" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "image" TEXT,
|
|
ADD COLUMN "isEmailVerified" BOOLEAN NOT NULL DEFAULT false;
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "verification" (
|
|
"id" TEXT NOT NULL,
|
|
"identifier" TEXT NOT NULL,
|
|
"value" TEXT NOT NULL,
|
|
"expiresAt" TIMESTAMP(3) NOT NULL,
|
|
"createdAt" TIMESTAMP(3),
|
|
"updatedAt" TIMESTAMP(3),
|
|
|
|
CONSTRAINT "verification_pkey" PRIMARY KEY ("id")
|
|
);
|