30b4eb07f7
- This is a first pass at getting a more logical structure. The focus is on moving from admin/frontend to client/server. - The location of the databases is highly important, this isn't expected to change again In the future - client/assets should probably become public/ - more stuff should be shared (helpers etc) - cleanup some confusion around tpl and views
21 lines
733 B
JavaScript
21 lines
733 B
JavaScript
var GhostBookshelf = require('./base'),
|
|
errors = require('../errorHandling'),
|
|
knex = GhostBookshelf.Knex;
|
|
|
|
module.exports = {
|
|
Post: require('./post').Post,
|
|
User: require('./user').User,
|
|
Role: require('./role').Role,
|
|
Permission: require('./permission').Permission,
|
|
Settings: require('./settings').Settings,
|
|
init: function () {
|
|
return knex.Schema.hasTable('posts').then(null, function () {
|
|
// Simple bootstraping of the data model for now.
|
|
var migration = require('../data/migration/001');
|
|
return migration.down().then(function () {
|
|
return migration.up();
|
|
}, errors.logAndThrowError);
|
|
}, errors.logAndThrowError);
|
|
}
|
|
};
|