mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
WIP Items module.
This commit is contained in:
16
server/src/models/Setting.js
Normal file
16
server/src/models/Setting.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import bookshelf from './bookshelf';
|
||||
|
||||
const Setting = bookshelf.Model.extend({
|
||||
|
||||
/**
|
||||
* Table name
|
||||
*/
|
||||
tableName: 'settings',
|
||||
|
||||
/**
|
||||
* Timestamp columns.
|
||||
*/
|
||||
hasTimestamps: false,
|
||||
});
|
||||
|
||||
export default bookshelf.model('Setting', Setting);
|
||||
Reference in New Issue
Block a user