aboutsummaryrefslogtreecommitdiffstats
path: root/app/Models/Service.js
blob: 0a13ec109ff70c6f3fd706e7fb59efa4c5b68183 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model');

class Service extends Model {
  user() {
    return this.belongsTo('App/Models/User', 'userId', 'id');
  }
}

module.exports = Service;