Skip to content

Commit

Permalink
Fix custom migration sources types (knex#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgschiller authored and kibertoad committed Dec 20, 2018
1 parent 07c8451 commit 31a9b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sections/migrations.js
Expand Up @@ -230,7 +230,7 @@ export default [
"`disableTransactions`: don't run migrations inside transactions (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-source) for more info (default filesystem)"
"`migrationSource`: specify a custom migration source, see [Custom Migration Source](#custom-migration-sources) for more info (default filesystem)"
]
},
{
Expand Down Expand Up @@ -320,7 +320,7 @@ export default [
{
type: "heading",
size: "md",
content: "Custom migraiton sources",
content: "Custom migration sources",
href: "custom-migration-sources"
},
{
Expand Down

0 comments on commit 31a9b64

Please sign in to comment.