diff --git a/sections/migrations.js b/sections/migrations.js index cd1c5568..36cc7cd3 100644 --- a/sections/migrations.js +++ b/sections/migrations.js @@ -360,6 +360,7 @@ export default [ "`tableName`: the table name used for storing the migration state (default `knex_migrations`)", "`schemaName`: the schema name used for storing the table with migration state (optional parameter, only works on DBs that support multiple schemas in a single DB, such as PostgreSQL)", "`disableTransactions`: don't run migrations inside transactions (default `false`)", + "`disableMigrationsListValidation`: do not validate that all the already executed migrations are still present in migration directories (default `false`)", "`sortDirsSeparately`: if true and multiple directories are specified, all migrations from a single directory will be executed before executing migrations in the next folder (default `false`)", "`loadExtensions`: array of file extensions which knex will treat as migrations. For example, if you have typescript transpiled into javascript in the same folder, you want to execute only javascript migrations. In this case, set `loadExtensions` to `['.js']` (Notice the dot!) (default `['.co', '.coffee', '.eg', '.iced', '.js', '.litcoffee', '.ls', '.ts']`)", "`migrationSource`: specify a custom migration source, see [Custom Migration Source](#custom-migration-sources) for more info (default filesystem)"