mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
8 lines
238 B
SQL
8 lines
238 B
SQL
-- CreateTable
|
|
CREATE TABLE "ApplicationSettings" (
|
|
"timestamp" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"enabledAuthencationMechanisms" "AuthMec"[],
|
|
|
|
CONSTRAINT "ApplicationSettings_pkey" PRIMARY KEY ("timestamp")
|
|
);
|