aboutsummaryrefslogtreecommitdiffstats
path: root/app/Models/Workspace.js
blob: b155e09d55a17dc34f3a9ac7719f5d4153fd6d9d (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 Workspace extends Model {
  user() {
    return this.belongsTo('App/Models/User', 'userId', 'id');
  }
}

module.exports = Workspace;