2022-07-25 02:13:27 +01:00

68 lines
2.0 KiB
SQL

/*
Warnings:
- You are about to drop the `user` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE "user";
-- CreateTable
CREATE TABLE "User" (
"id" VARCHAR(255) NOT NULL,
"level" INTEGER NOT NULL DEFAULT 0,
"xp" INTEGER NOT NULL DEFAULT 0,
"balance" INTEGER NOT NULL DEFAULT 0,
"lastDaily" TIMESTAMP(3) NOT NULL,
"vegan" BOOLEAN NOT NULL DEFAULT false,
"activist" BOOLEAN NOT NULL DEFAULT false,
"trusted" BOOLEAN NOT NULL DEFAULT false,
"plus" BOOLEAN NOT NULL DEFAULT false,
"muted" BOOLEAN NOT NULL DEFAULT false,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Restrict" (
"id" SERIAL NOT NULL,
"userId" TEXT NOT NULL,
"startTime" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"endedTime" TIMESTAMP(3),
"reason" TEXT NOT NULL,
CONSTRAINT "Restrict_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Ban" (
"id" SERIAL NOT NULL,
"userId" TEXT NOT NULL,
"time" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"active" BOOLEAN NOT NULL DEFAULT true,
"reason" TEXT NOT NULL,
CONSTRAINT "Ban_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "TempBan" (
"id" SERIAL NOT NULL,
"userId" TEXT NOT NULL,
"startTime" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"endedTime" TIMESTAMP(3) NOT NULL,
"active" BOOLEAN NOT NULL DEFAULT true,
"reason" TEXT NOT NULL,
CONSTRAINT "TempBan_pkey" PRIMARY KEY ("id")
);
-- AddForeignKey
ALTER TABLE "Restrict" ADD CONSTRAINT "Restrict_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Ban" ADD CONSTRAINT "Ban_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "TempBan" ADD CONSTRAINT "TempBan_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;