rittenhop-dev/versions/5.94.2/node_modules/knex/lib/migrations/seed/seed-stub.js
2024-09-23 19:40:12 -04:00

14 lines
306 B
JavaScript

// Stub Seed:
// Used for now in browser builds, where filesystem access isn't
// available.
const StubSeed = (module.exports = function () {});
const noSuchMethod = async function () {
throw new Error('Seeds are not supported');
};
StubSeed.prototype = {
make: noSuchMethod,
run: noSuchMethod,
};