mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 05:21:32 +03:00
78 lines
2.4 KiB
SQL
78 lines
2.4 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `avatar_url` on the `users` table. All the data in the column will be lost.
|
|
- You are about to drop the column `fulfilled` on the `users` table. All the data in the column will be lost.
|
|
- You are about to drop the column `token_nonce` on the `users` table. All the data in the column will be lost.
|
|
- You are about to drop the `connected_accounts` table. If the table is not empty, all the data it contains will be lost.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "connected_accounts" DROP CONSTRAINT "connected_accounts_user_id_fkey";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "users" DROP COLUMN "avatar_url",
|
|
DROP COLUMN "fulfilled",
|
|
DROP COLUMN "token_nonce",
|
|
ADD COLUMN "email_verified" TIMESTAMP(3),
|
|
ADD COLUMN "image" VARCHAR,
|
|
ALTER COLUMN "name" SET DATA TYPE TEXT,
|
|
ALTER COLUMN "email" DROP NOT NULL,
|
|
ALTER COLUMN "email" SET DATA TYPE TEXT;
|
|
|
|
-- DropTable
|
|
DROP TABLE "connected_accounts";
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "accounts" (
|
|
"id" TEXT NOT NULL,
|
|
"user_id" TEXT NOT NULL,
|
|
"type" TEXT NOT NULL,
|
|
"provider" TEXT NOT NULL,
|
|
"provider_account_id" TEXT NOT NULL,
|
|
"refresh_token" TEXT,
|
|
"access_token" TEXT,
|
|
"expires_at" INTEGER,
|
|
"token_type" TEXT,
|
|
"scope" TEXT,
|
|
"id_token" TEXT,
|
|
"session_state" TEXT,
|
|
|
|
CONSTRAINT "accounts_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "sessions" (
|
|
"id" TEXT NOT NULL,
|
|
"session_token" TEXT NOT NULL,
|
|
"user_id" TEXT NOT NULL,
|
|
"expires" TIMESTAMP(3) NOT NULL,
|
|
|
|
CONSTRAINT "sessions_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "verificationtokens" (
|
|
"identifier" TEXT NOT NULL,
|
|
"token" TEXT NOT NULL,
|
|
"expires" TIMESTAMP(3) NOT NULL
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "accounts_provider_provider_account_id_key" ON "accounts"("provider", "provider_account_id");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "sessions_session_token_key" ON "sessions"("session_token");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "verificationtokens_token_key" ON "verificationtokens"("token");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "verificationtokens_identifier_token_key" ON "verificationtokens"("identifier", "token");
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "accounts" ADD CONSTRAINT "accounts_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "users"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "sessions" ADD CONSTRAINT "sessions_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "users"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|