mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
'use strict'
|
|
|
|
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
|
|
const Model = use('Model')
|
|
|
|
class Summoner extends Model {
|
|
matches() {
|
|
return this.hasMany('App/Models/Match', 'puuid', 'summoner_puuid')
|
|
}
|
|
}
|
|
|
|
module.exports = Summoner
|