knex/lib/migrate/migrate-stub.js
2015-08-25 10:23:34 +03:00

21 lines
520 B
JavaScript

// Stub Migrate:
// Used for now in browser builds, where filesystem access isn't
// available. Maybe we can eventually do websql migrations
// with jsonp and a json migration api.
"use strict";
var StubMigrate = module.exports = function () {};
var Promise = require('bluebird');
var noSuchMethod = Promise.method(function () {
throw new Error("Migrations are not supported");
});
StubMigrate.prototype = {
make: noSuchMethod,
latest: noSuchMethod,
rollback: noSuchMethod,
currentVersion: noSuchMethod
};