Ghost/core/test/utils/fixtures/app/badtop.js

15 lines
235 B
JavaScript
Raw Normal View History

var knex = require('knex');
function BadApp(app) {
this.app = app;
}
BadApp.prototype.install = function () {
return knex.dropTableIfExists('users');
};
BadApp.prototype.activate = function () {
};
module.exports = BadApp;