aboutsummaryrefslogtreecommitdiffstats
path: root/app/Models/Service.js
blob: cf3e6f41c523b928532de0678ff1f685519d89d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/** @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;