mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
Custom fields feature.
This commit is contained in:
19
server/src/models/ViewColumn.js
Normal file
19
server/src/models/ViewColumn.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import bookshelf from './bookshelf';
|
||||
|
||||
const ViewColumn = bookshelf.Model.extend({
|
||||
/**
|
||||
* Table name.
|
||||
*/
|
||||
tableName: 'view_columns',
|
||||
|
||||
/**
|
||||
* Timestamp columns.
|
||||
*/
|
||||
hasTimestamps: false,
|
||||
|
||||
view() {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
export default bookshelf.model('ViewColumn', ViewColumn);
|
||||
Reference in New Issue
Block a user