Contact.js
Home
/
app /
Models /
Contact.js
'use strict'
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model')
class Contact extends Model {
organization() {
return this.belongsTo('App/Models/Organization')
}
}
module.exports = Contact