knex/lib/dialects/mysql/migrator.js

16 lines
306 B
JavaScript
Raw Normal View History

// MySQL Migrator
// ------
module.exports = function(client) {
var Migrator = require('../../migrate');
var inherits = require('inherits');
function Migrator_MySQL() {
this.client = client;
Migrator.apply(this, arguments);
}
inherits(Migrator_MySQL, Migrator);
client.Migrator = Migrator_MySQL;
};