mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
import TenantModel from '@/models/TenantModel';
|
|
|
|
export default class PasswordResets extends TenantModel {
|
|
/**
|
|
* Table name
|
|
*/
|
|
static get tableName() {
|
|
return 'password_resets';
|
|
}
|
|
}
|