PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
knex
/
src
const { keys } = require('lodash'); // The client names we'll allow in the `{name: lib}` pairing. const CLIENT_ALIASES = Object.freeze({ pg: 'postgres', postgresql: 'postgres', sqlite: 'sqlite3', }); const SUPPORTED_CLIENTS = Object.freeze( [ 'mssql', 'mysql', 'mysql2', 'oracledb', 'postgres', 'redshift', 'sqlite3', ].concat(keys(CLIENT_ALIASES)) ); const POOL_CONFIG_OPTIONS = Object.freeze([ 'maxWaitingClients', 'testOnBorrow', 'fifo', 'priorityRange', 'autostart', 'evictionRunIntervalMillis', 'numTestsPerRun', 'softIdleTimeoutMillis', 'Promise', ]); module.exports = { CLIENT_ALIASES, SUPPORTED_CLIENTS, POOL_CONFIG_OPTIONS, };
[-] helpers.js
[edit]
[+]
migrate
[+]
dialects
[-] raw.js
[edit]
[-] knex.js
[edit]
[+]
..
[+]
schema
[-] client.js
[edit]
[+]
seed
[-] index.js
[edit]
[+]
util
[+]
query
[-] ref.js
[edit]
[-] transaction.js
[edit]
[-] functionhelper.js
[edit]
[-] runner.js
[edit]
[-] interface.js
[edit]
[-] constants.js
[edit]
[-] logger.js
[edit]
[-] formatter.js
[edit]