mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
751 B
27 lines
751 B
2 years ago
|
import path from 'node:path'
|
||
|
import fse from 'fs-extra'
|
||
|
import semver from 'semver'
|
||
|
|
||
|
export default {
|
||
|
/**
|
||
|
* Gets the migration names
|
||
|
* @returns Promise<string[]>
|
||
|
*/
|
||
|
async getMigrations() {
|
||
|
const baseMigrationPath = path.join(WIKI.SERVERPATH, 'db/migrations')
|
||
|
const migrationFiles = await fse.readdir(baseMigrationPath)
|
||
|
return migrationFiles.map(m => m.replace('.mjs', '')).sort(semver.compare).map(m => ({
|
||
|
file: m,
|
||
|
directory: baseMigrationPath
|
||
|
}))
|
||
|
},
|
||
|
|
||
|
getMigrationName(migration) {
|
||
|
return migration.file.indexOf('.mjs') >= 0 ? migration.file : `${migration.file}.mjs`
|
||
|
},
|
||
|
|
||
|
async getMigration(migration) {
|
||
|
return import(path.join(WIKI.SERVERPATH, 'db/migrations', `${migration.file}.mjs`))
|
||
|
}
|
||
|
}
|