mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: Exchange rates CRUD.
This commit is contained in:
10
server/src/models/ExchangeRate.js
Normal file
10
server/src/models/ExchangeRate.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import BaseModel from '@/models/Model';
|
||||
|
||||
export default class ExchangeRate extends BaseModel {
|
||||
/**
|
||||
* Table name
|
||||
*/
|
||||
static get tableName() {
|
||||
return 'exchange_rates';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user