chore: tweak wording, fix config docs

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2024-08-26 13:40:14 +02:00
parent 1532b089b9
commit 66b7af4217
2 changed files with 3 additions and 9 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/backend-defaults': patch
---
Added the option to skip database migrations by setting `skipMigrations: true` in options. This can be done globally in the database config or by plugin id.
Added the option to skip database migrations by setting `skipMigrations: true` in config. This can be done globally in the database config or by plugin id.
+2 -8
View File
@@ -425,10 +425,7 @@ export interface Config {
pluginDivisionMode?: 'database' | 'schema';
/** Configures the ownership of newly created schemas in pg databases. */
role?: string;
/**
* Skip running database migrations.
* NOTE: Currently only supported by the `pg` client.
*/
/** Skip running database migrations. */
skipMigrations?: boolean;
/**
* Arbitrary config object to pass to knex when initializing
@@ -468,10 +465,7 @@ export interface Config {
knexConfig?: object;
/** Configures the ownership of newly created schemas in pg databases. */
role?: string;
/**
* Skip running database migrations.
* NOTE: Currently only supported by the `pg` client.
*/
/** Skip running database migrations. */
skipMigrations?: boolean;
};
};