feat: Customers resource.

This commit is contained in:
Ahmed Bouhuolia
2020-06-08 18:50:04 +02:00
parent fe240c058b
commit d915813195
8 changed files with 613 additions and 36 deletions

View 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';
}
}