mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
22 lines
339 B
TypeScript
22 lines
339 B
TypeScript
import TenantModel from 'models/TenantModel';
|
|
|
|
export default class Currency extends TenantModel {
|
|
/**
|
|
* Table name
|
|
*/
|
|
static get tableName() {
|
|
return 'currencies';
|
|
}
|
|
|
|
/**
|
|
* Timestamps columns.
|
|
*/
|
|
get timestamps() {
|
|
return ['createdAt', 'updatedAt'];
|
|
}
|
|
|
|
static get resourceable() {
|
|
return true;
|
|
}
|
|
}
|