mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-23 18:58:51 +02:00
Removed migrations
This commit is contained in:
@@ -25,7 +25,6 @@ import m16 from "./scriptsPg/1.17.0";
|
|||||||
import m17 from "./scriptsPg/1.18.0";
|
import m17 from "./scriptsPg/1.18.0";
|
||||||
import m18 from "./scriptsPg/1.18.3";
|
import m18 from "./scriptsPg/1.18.3";
|
||||||
import m19 from "./scriptsPg/1.18.4";
|
import m19 from "./scriptsPg/1.18.4";
|
||||||
import m20 from "./scriptsPg/1.18.5";
|
|
||||||
|
|
||||||
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
||||||
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
||||||
@@ -50,8 +49,7 @@ const migrations = [
|
|||||||
{ version: "1.17.0", run: m16 },
|
{ version: "1.17.0", run: m16 },
|
||||||
{ version: "1.18.0", run: m17 },
|
{ version: "1.18.0", run: m17 },
|
||||||
{ version: "1.18.3", run: m18 },
|
{ version: "1.18.3", run: m18 },
|
||||||
{ version: "1.18.4", run: m19 },
|
{ version: "1.18.4", run: m19 }
|
||||||
{ version: "1.18.5", run: m20 }
|
|
||||||
// Add new migrations here as they are created
|
// Add new migrations here as they are created
|
||||||
] as {
|
] as {
|
||||||
version: string;
|
version: string;
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ import m37 from "./scriptsSqlite/1.17.0";
|
|||||||
import m38 from "./scriptsSqlite/1.18.0";
|
import m38 from "./scriptsSqlite/1.18.0";
|
||||||
import m39 from "./scriptsSqlite/1.18.3";
|
import m39 from "./scriptsSqlite/1.18.3";
|
||||||
import m40 from "./scriptsSqlite/1.18.4";
|
import m40 from "./scriptsSqlite/1.18.4";
|
||||||
import m41 from "./scriptsSqlite/1.18.5";
|
|
||||||
|
|
||||||
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
||||||
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
||||||
@@ -84,8 +83,7 @@ const migrations = [
|
|||||||
{ version: "1.17.0", run: m37 },
|
{ version: "1.17.0", run: m37 },
|
||||||
{ version: "1.18.0", run: m38 },
|
{ version: "1.18.0", run: m38 },
|
||||||
{ version: "1.18.3", run: m39 },
|
{ version: "1.18.3", run: m39 },
|
||||||
{ version: "1.18.4", run: m40 },
|
{ version: "1.18.4", run: m40 }
|
||||||
{ version: "1.18.5", run: m41 }
|
|
||||||
// Add new migrations here as they are created
|
// Add new migrations here as they are created
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
import { db } from "@server/db/pg/driver";
|
|
||||||
import { sql } from "drizzle-orm";
|
|
||||||
|
|
||||||
const version = "1.18.5";
|
|
||||||
|
|
||||||
export default async function migration() {
|
|
||||||
console.log(`Running setup script ${version}...`);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await db.execute(sql`BEGIN`);
|
|
||||||
|
|
||||||
await db.execute(sql`
|
|
||||||
ALTER TABLE "resources" RENAME COLUMN "headers" TO "requestHeaders";
|
|
||||||
`);
|
|
||||||
|
|
||||||
await db.execute(sql`
|
|
||||||
ALTER TABLE "resources" ADD COLUMN "responseHeaders" text;
|
|
||||||
`);
|
|
||||||
|
|
||||||
await db.execute(sql`COMMIT`);
|
|
||||||
console.log("Migrated database");
|
|
||||||
} catch (e) {
|
|
||||||
await db.execute(sql`ROLLBACK`);
|
|
||||||
console.log("Unable to migrate database");
|
|
||||||
console.log(e);
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`${version} migration complete`);
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
import { APP_PATH } from "@server/lib/consts";
|
|
||||||
import Database from "better-sqlite3";
|
|
||||||
import path from "path";
|
|
||||||
|
|
||||||
const version = "1.18.5";
|
|
||||||
|
|
||||||
export default async function migration() {
|
|
||||||
console.log(`Running setup script ${version}...`);
|
|
||||||
|
|
||||||
const location = path.join(APP_PATH, "db", "db.sqlite");
|
|
||||||
const db = new Database(location);
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.pragma("foreign_keys = OFF");
|
|
||||||
|
|
||||||
db.transaction(() => {
|
|
||||||
db.prepare(
|
|
||||||
`ALTER TABLE "resources" RENAME COLUMN "headers" TO "requestHeaders";`
|
|
||||||
).run();
|
|
||||||
db.prepare(
|
|
||||||
`ALTER TABLE "resources" ADD "responseHeaders" text;`
|
|
||||||
).run();
|
|
||||||
})();
|
|
||||||
|
|
||||||
console.log("Migrated database");
|
|
||||||
} catch (e) {
|
|
||||||
console.log("Failed to migrate db:", e);
|
|
||||||
throw e;
|
|
||||||
} finally {
|
|
||||||
db.pragma("foreign_keys = ON");
|
|
||||||
db.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`${version} migration complete`);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user