Initial commit
This commit is contained in:
34
node_modules/drizzle-orm/migrator.js
generated
vendored
Normal file
34
node_modules/drizzle-orm/migrator.js
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
import crypto from "node:crypto";
|
||||
import fs from "node:fs";
|
||||
function readMigrationFiles(config) {
|
||||
const migrationFolderTo = config.migrationsFolder;
|
||||
const migrationQueries = [];
|
||||
const journalPath = `${migrationFolderTo}/meta/_journal.json`;
|
||||
if (!fs.existsSync(journalPath)) {
|
||||
throw new Error(`Can't find meta/_journal.json file`);
|
||||
}
|
||||
const journalAsString = fs.readFileSync(`${migrationFolderTo}/meta/_journal.json`).toString();
|
||||
const journal = JSON.parse(journalAsString);
|
||||
for (const journalEntry of journal.entries) {
|
||||
const migrationPath = `${migrationFolderTo}/${journalEntry.tag}.sql`;
|
||||
try {
|
||||
const query = fs.readFileSync(`${migrationFolderTo}/${journalEntry.tag}.sql`).toString();
|
||||
const result = query.split("--> statement-breakpoint").map((it) => {
|
||||
return it;
|
||||
});
|
||||
migrationQueries.push({
|
||||
sql: result,
|
||||
bps: journalEntry.breakpoints,
|
||||
folderMillis: journalEntry.when,
|
||||
hash: crypto.createHash("sha256").update(query).digest("hex")
|
||||
});
|
||||
} catch {
|
||||
throw new Error(`No file ${migrationPath} found in ${migrationFolderTo} folder`);
|
||||
}
|
||||
}
|
||||
return migrationQueries;
|
||||
}
|
||||
export {
|
||||
readMigrationFiles
|
||||
};
|
||||
//# sourceMappingURL=migrator.js.map
|
||||
Reference in New Issue
Block a user