mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 05:29:41 +00:00
Migration test force re-create tables
This commit is contained in:
parent
c738e35a8c
commit
0f83a292f6
3 changed files with 9 additions and 5 deletions
|
|
@ -178,11 +178,15 @@ async function migrateUsers(oldUsers) {
|
|||
}
|
||||
|
||||
module.exports.migrate = async () => {
|
||||
Logger.info(`[dbMigration3] Starting migration`)
|
||||
Logger.info(`[dbMigration] Starting migration`)
|
||||
|
||||
const data = await oldDbFiles.init()
|
||||
|
||||
const start = Date.now()
|
||||
await migrateLibraries(data.libraries)
|
||||
await migrateLibraryItems(data.libraryItems.slice(0, 10))
|
||||
await migrateLibraryItems(data.libraryItems)
|
||||
await migrateUsers(data.users)
|
||||
const elapsed = Date.now() - start
|
||||
|
||||
Logger.info(`[dbMigration] Migration complete. Elapsed ${Math.round(elapsed / 1000)}s`)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue