mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-02 17:24:57 +02:00
Add db migration management infratructure
This commit is contained in:
parent
0344a63b48
commit
3f93b93d9e
13 changed files with 1385 additions and 172 deletions
9
test/server/managers/migrations/v1.10.0-migration.js
Normal file
9
test/server/managers/migrations/v1.10.0-migration.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
async function up() {
|
||||
console.log('v1.10.0 up')
|
||||
}
|
||||
|
||||
async function down() {
|
||||
console.log('v1.10.0 down')
|
||||
}
|
||||
|
||||
module.exports = { up, down }
|
Loading…
Add table
Add a link
Reference in a new issue