Added auth functionality, initial work with views and field types
This commit is contained in:
23
backend/src/models/account.model.ts
Normal file
23
backend/src/models/account.model.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { BaseModel } from './base.model';
|
||||
|
||||
export class Account extends BaseModel {
|
||||
static tableName = 'accounts';
|
||||
|
||||
id!: string;
|
||||
name!: string;
|
||||
website?: string;
|
||||
phone?: string;
|
||||
industry?: string;
|
||||
ownerId?: string;
|
||||
|
||||
static relationMappings = {
|
||||
owner: {
|
||||
relation: BaseModel.BelongsToOneRelation,
|
||||
modelClass: 'user.model',
|
||||
join: {
|
||||
from: 'accounts.ownerId',
|
||||
to: 'users.id',
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user