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

15 lines
239 B
JavaScript
Raw Normal View History

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