Browse Source

Merge pull request #4617 from Budibase/fix/app-migrations

Fix app list retrieval in migrations
pull/4710/head
Rory Powell 4 years ago
committed by GitHub
parent
commit
a5d0a4e2d0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/backend-core/src/migrations/index.js

2
packages/backend-core/src/migrations/index.js

@ -36,7 +36,7 @@ const runMigration = async (CouchDB, migration, options = {}) => {
if (migrationType === exports.MIGRATION_TYPES.GLOBAL) {
dbNames = [getGlobalDBName()]
} else if (migrationType === exports.MIGRATION_TYPES.APP) {
const apps = await getAllApps(CouchDB, migration.opts)
const apps = await getAllApps(migration.opts)
dbNames = apps.map(app => app.appId)
} else {
throw new Error(

Loading…
Cancel
Save