diff --git a/packages/backend-defaults/src/entrypoints/database/DatabaseManager.ts b/packages/backend-defaults/src/entrypoints/database/DatabaseManager.ts index 5c39307f27..42ba644823 100644 --- a/packages/backend-defaults/src/entrypoints/database/DatabaseManager.ts +++ b/packages/backend-defaults/src/entrypoints/database/DatabaseManager.ts @@ -88,7 +88,7 @@ export class DatabaseManagerImpl implements LegacyRootDatabaseService { const getClient = () => this.getDatabase(pluginId, connector, deps); let skip = false; - // config options take precedence over config + // class options take precedence over config if (this.options?.migrations?.skip !== undefined) { skip = this.options.migrations.skip; } else {