mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
966 B
48 lines
966 B
7 years ago
|
const Model = require('objection').Model
|
||
|
|
||
|
/**
|
||
7 years ago
|
* Groups model
|
||
7 years ago
|
*/
|
||
|
module.exports = class Group extends Model {
|
||
|
static get tableName() { return 'groups' }
|
||
|
|
||
|
static get jsonSchema () {
|
||
|
return {
|
||
|
type: 'object',
|
||
|
required: ['name'],
|
||
|
|
||
|
properties: {
|
||
|
id: {type: 'integer'},
|
||
|
name: {type: 'string'},
|
||
|
createdAt: {type: 'string'},
|
||
|
updatedAt: {type: 'string'}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static get relationMappings() {
|
||
|
return {
|
||
|
users: {
|
||
|
relation: Model.ManyToManyRelation,
|
||
7 years ago
|
modelClass: require('./users'),
|
||
7 years ago
|
join: {
|
||
|
from: 'groups.id',
|
||
|
through: {
|
||
|
from: 'userGroups.groupId',
|
||
|
to: 'userGroups.userId'
|
||
|
},
|
||
|
to: 'users.id'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$beforeUpdate() {
|
||
|
this.updatedAt = new Date().toISOString()
|
||
|
}
|
||
|
$beforeInsert() {
|
||
|
this.createdAt = new Date().toISOString()
|
||
|
this.updatedAt = new Date().toISOString()
|
||
|
}
|
||
|
}
|