Skip to content

Instantly share code, notes, and snippets.

@Aristona
Created July 22, 2016 10:59
Show Gist options
  • Save Aristona/ca1c90c4901034824d53f81742ed803f to your computer and use it in GitHub Desktop.
Save Aristona/ca1c90c4901034824d53f81742ed803f to your computer and use it in GitHub Desktop.
"use strict";
var Schema = require('../database/schema');
var Command = require('./command');
var sequence = require('when/sequence');
var _ = require('lodash');
class Migrate extends Command {
constructor(knex) {
this.knex = knex;
}
createTable(tableName) {
}
createTables() {
}
run() {
}
}
module.exports = (knex) => {
return new Migrate(knex)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment