mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
|
const ghostBookshelf = require('./base');
|
||
|
|
||
|
const CustomThemeSetting = ghostBookshelf.Model.extend({
|
||
|
tableName: 'custom_theme_settings'
|
||
|
});
|
||
|
|
||
|
module.exports = {
|
||
|
CustomThemeSetting: ghostBookshelf.model('CustomThemeSetting', CustomThemeSetting)
|
||
|
};
|