UNPKG

@fdm-monster/server

Version:

FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.

182 lines (181 loc) 6.44 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "ChangePrintCompletionDeletePrinterCascade1708465930665", { enumerable: true, get: function() { return ChangePrintCompletionDeletePrinterCascade1708465930665; } }); class ChangePrintCompletionDeletePrinterCascade1708465930665 { name = "ChangePrintCompletionDeletePrinterCascade1708465930665"; async up(queryRunner) { await queryRunner.query(` CREATE TABLE "temporary_print_completion" ( "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "fileName" varchar NOT NULL, "createdAt" integer NOT NULL DEFAULT (datetime('now')), "status" varchar NOT NULL, "printerId" integer NOT NULL, "printerReference" varchar, "completionLog" varchar, "context" text ) `); await queryRunner.query(` INSERT INTO "temporary_print_completion"( "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" ) SELECT "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" FROM "print_completion" `); await queryRunner.query(` DROP TABLE "print_completion" `); await queryRunner.query(` ALTER TABLE "temporary_print_completion" RENAME TO "print_completion" `); await queryRunner.query(` CREATE TABLE "temporary_print_completion" ( "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "fileName" varchar NOT NULL, "createdAt" integer NOT NULL DEFAULT (datetime('now')), "status" varchar NOT NULL, "printerId" integer NOT NULL, "printerReference" varchar, "completionLog" varchar, "context" text, CONSTRAINT "FK_c078b1dfe5f87f79f131520d856" FOREIGN KEY ("printerId") REFERENCES "printer" ("id") ON DELETE CASCADE ON UPDATE NO ACTION ) `); await queryRunner.query(` INSERT INTO "temporary_print_completion"( "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" ) SELECT "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" FROM "print_completion" `); await queryRunner.query(` DROP TABLE "print_completion" `); await queryRunner.query(` ALTER TABLE "temporary_print_completion" RENAME TO "print_completion" `); } async down(queryRunner) { await queryRunner.query(` ALTER TABLE "print_completion" RENAME TO "temporary_print_completion" `); await queryRunner.query(` CREATE TABLE "print_completion" ( "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "fileName" varchar NOT NULL, "createdAt" integer NOT NULL DEFAULT (datetime('now')), "status" varchar NOT NULL, "printerId" integer NOT NULL, "printerReference" varchar, "completionLog" varchar, "context" text ) `); await queryRunner.query(` INSERT INTO "print_completion"( "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" ) SELECT "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" FROM "temporary_print_completion" `); await queryRunner.query(` DROP TABLE "temporary_print_completion" `); await queryRunner.query(` ALTER TABLE "print_completion" RENAME TO "temporary_print_completion" `); await queryRunner.query(` CREATE TABLE "print_completion" ( "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "fileName" varchar NOT NULL, "createdAt" integer NOT NULL DEFAULT (datetime('now')), "status" varchar NOT NULL, "printerId" integer NOT NULL, "printerReference" varchar, "completionLog" varchar, "context" text, CONSTRAINT "FK_c078b1dfe5f87f79f131520d856" FOREIGN KEY ("printerId") REFERENCES "printer" ("id") ON DELETE SET NULL ON UPDATE NO ACTION ) `); await queryRunner.query(` INSERT INTO "print_completion"( "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" ) SELECT "id", "fileName", "createdAt", "status", "printerId", "printerReference", "completionLog", "context" FROM "temporary_print_completion" `); await queryRunner.query(` DROP TABLE "temporary_print_completion" `); } } //# sourceMappingURL=1708465930665-ChangePrintCompletionDeletePrinterCascade.js.map