Redirect if user does not exist.

This commit is contained in:
charles-gauthereau
2024-11-13 19:45:22 +01:00
parent 12ff73c8e9
commit 9727eef581
6 changed files with 76 additions and 5 deletions
@@ -0,0 +1,13 @@
-- CreateEnum
CREATE TYPE "TypeStorage" AS ENUM ('local', 's3');
-- CreateTable
CREATE TABLE "Settings" (
"id" TEXT NOT NULL,
"storage" "TypeStorage" NOT NULL DEFAULT 'local',
"s3AccessKeyId" TEXT,
"s3SecretAccessKey" TEXT,
"S3BucketName" TEXT,
CONSTRAINT "Settings_pkey" PRIMARY KEY ("id")
);