PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
knex
/
src
/
migrate
// Stub Migrate: // Used for now in browser builds, where filesystem access isn't // available. const StubMigrate = (module.exports = function() {}); import Promise from 'bluebird'; const noSuchMethod = Promise.method(function() { throw new Error('Migrations are not supported'); }); StubMigrate.prototype = { make: noSuchMethod, latest: noSuchMethod, rollback: noSuchMethod, currentVersion: noSuchMethod, };
[-] table-resolver.js
[edit]
[+]
..
[+]
stub
[-] table-creator.js
[edit]
[+]
sources
[-] migrate-stub.js
[edit]
[-] MigrationGenerator.js
[edit]
[-] Migrator.js
[edit]
[-] migration-list-resolver.js
[edit]