UNPKG

@fdm-monster/server

Version:

FDM Monster is a bulk OctoPrint, Klipper, PrusaLink and BambuLab manager to set up, configure and monitor 3D printers. Our aim is to provide neat overview over your farm.

24 lines (23 loc) 642 B
//#region src/migrations/1767279607392-DropCustomGcode.ts var DropCustomGcode1767279607392 = class { name = "DropCustomGcode1767279607392"; async up(queryRunner) { await queryRunner.query(` DROP TABLE custom_gcode `); } async down(queryRunner) { await queryRunner.query(` CREATE TABLE "custom_gcode" ( "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "description" varchar, "gcode" text NOT NULL ) `); } }; //#endregion export { DropCustomGcode1767279607392 }; //# sourceMappingURL=1767279607392-DropCustomGcode.js.map