mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Redirect if user does not exist.
This commit is contained in:
@@ -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")
|
||||
);
|
||||
Reference in New Issue
Block a user