feat(admin): moved server build/update to full app
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m27s
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m27s
This commit is contained in:
17
migrations/0034_groovy_darkhawk.sql
Normal file
17
migrations/0034_groovy_darkhawk.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
CREATE TABLE "server_data" (
|
||||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||||
"name" text NOT NULL,
|
||||
"server" text,
|
||||
"plant_token" text,
|
||||
"id_address" text,
|
||||
"great_plains_plantCode" numeric,
|
||||
"contact_email" text,
|
||||
"contact_phone" text,
|
||||
"active" boolean DEFAULT true,
|
||||
"server_loc" text,
|
||||
"last_updated" timestamp DEFAULT now(),
|
||||
"build_number" integer,
|
||||
"is_upgrading" boolean DEFAULT false
|
||||
);
|
||||
--> statement-breakpoint
|
||||
CREATE UNIQUE INDEX "plant_token" ON "server_data" USING btree ("plant_token");
|
||||
Reference in New Issue
Block a user