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

module.exports = Workspace;