UNPKG

333 BJavaScriptView Raw
1'use strict';
2
3const Dynograte = require('./lib/Dynograte');
4
5exports.create = (options) => {
6 return new Dynograte(options);
7};
8
9exports.migrate = (options, migrators) => {
10 let dynograte = new Dynograte(options);
11 return dynograte.migrate(migrators);
12};
13
14exports.createMigrationFile = require('./lib/util/createMigrationFile');