fix(contorller): env corrections on where to look for the file when running
This commit is contained in:
21
migrations/0010_watery_gravity.sql
Normal file
21
migrations/0010_watery_gravity.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
CREATE TABLE "serverData" (
|
||||
"server_id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||||
"name" text NOT NULL,
|
||||
"serverDNS" text,
|
||||
"plantToken" text,
|
||||
"ipAddress" text,
|
||||
"greatPlainsPlantCode" numeric,
|
||||
"streetAddress" text,
|
||||
"cityState" text,
|
||||
"zipcode" numeric,
|
||||
"contactEmail" text,
|
||||
"contactPhone" text,
|
||||
"customerTiAcc" text,
|
||||
"lstServerPort" numeric,
|
||||
"active" boolean DEFAULT true,
|
||||
"serverLoc" text,
|
||||
"lastUpdated" timestamp DEFAULT now(),
|
||||
"isUpgrading" boolean DEFAULT false
|
||||
);
|
||||
--> statement-breakpoint
|
||||
CREATE UNIQUE INDEX "plantToken" ON "serverData" USING btree ("plantToken");
|
||||
Reference in New Issue
Block a user