feat: Vendors resource.

This commit is contained in:
Ahmed Bouhuolia
2020-06-08 19:56:07 +02:00
parent d915813195
commit ec429887fc
7 changed files with 632 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Model } from 'objection';
import TenantModel from '@/models/TenantModel';
export default class Vendor extends TenantModel {
/**
* Table name
*/
static get tableName() {
return 'vendors';
}
}