mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
feat: Customers resource.
This commit is contained in:
11
server/src/models/Customer.js
Normal file
11
server/src/models/Customer.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Model } from 'objection';
|
||||
import TenantModel from '@/models/TenantModel';
|
||||
|
||||
export default class Customer extends TenantModel {
|
||||
/**
|
||||
* Table name
|
||||
*/
|
||||
static get tableName() {
|
||||
return 'customers';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user