You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
445 B
JavaScript

// Stub Seed:
// 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 StubSeed = module.exports = function () {};
var Promise = require('bluebird');
var noSuchMethod = Promise.method(function () {
throw new Error("Seeds are not supported");
});
StubSeed.prototype = {
make: noSuchMethod,
run: noSuchMethod
};