This commit is contained in:
@@ -0,0 +1 @@
|
||||
-- This is an empty migration.
|
||||
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the `Notam` table. If the table is not empty, all the data it contains will be lost.
|
||||
|
||||
*/
|
||||
-- DropTable
|
||||
DROP TABLE "Notam";
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE "Config" (
|
||||
"id" SERIAL NOT NULL,
|
||||
"color" "GlobalColor",
|
||||
"message" TEXT NOT NULL DEFAULT '',
|
||||
"maintenanceEnabled" BOOLEAN NOT NULL DEFAULT false,
|
||||
"disableHPG" BOOLEAN NOT NULL DEFAULT false,
|
||||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
|
||||
CONSTRAINT "Config_pkey" PRIMARY KEY ("id")
|
||||
);
|
||||
Reference in New Issue
Block a user