87fc9f2fb9
* feat: oauth reform for potential improvements * fix: update avatars with new pfp * fix: remove redundant include * feat: v3.6.0-rc4 Co-authored-by: dicedtomato <diced@users.noreply.github.com> * fix: remove console log Co-authored-by: dicedtomato <diced@users.noreply.github.com>
31 lines
1,004 B
SQL
31 lines
1,004 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `oauth` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `oauthAccessToken` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `oauthProvider` on the `User` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- CreateEnum
|
|
CREATE TYPE "OauthProviders" AS ENUM ('DISCORD', 'GITHUB');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "oauth",
|
|
DROP COLUMN "oauthAccessToken",
|
|
DROP COLUMN "oauthProvider";
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "OAuth" (
|
|
"id" SERIAL NOT NULL,
|
|
"provider" "OauthProviders" NOT NULL,
|
|
"userId" INTEGER NOT NULL,
|
|
"token" TEXT NOT NULL,
|
|
|
|
CONSTRAINT "OAuth_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "OAuth_provider_key" ON "OAuth"("provider");
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "OAuth" ADD CONSTRAINT "OAuth_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|