| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Objection Docs:
- // http://vincit.github.io/objection.js/
- const db = require('../db');
- const Model = require('objection').Model;
- const User = require('./user');
- Model.knex(db);
- class AuditLog extends Model {
- $beforeInsert () {
- this.created_on = Model.raw('NOW()');
- this.modified_on = Model.raw('NOW()');
- // Default for meta
- if (typeof this.meta === 'undefined') {
- this.meta = {};
- }
- }
- $beforeUpdate () {
- this.modified_on = Model.raw('NOW()');
- }
- static get name () {
- return 'AuditLog';
- }
- static get tableName () {
- return 'audit_log';
- }
- static get jsonAttributes () {
- return ['meta'];
- }
- static get relationMappings () {
- return {
- user: {
- relation: Model.HasOneRelation,
- modelClass: User,
- join: {
- from: 'audit_log.user_id',
- to: 'user.id'
- },
- modify: function (qb) {
- qb.omit(['id', 'created_on', 'modified_on', 'roles']);
- }
- }
- };
- }
- }
- module.exports = AuditLog;
|