aboutsummaryrefslogtreecommitdiff
path: root/src/CamilStaps/BotleaguesApi/Database/Participant.php
blob: 584d00cf7399e46408fc1c275814fc2e58d7bb37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php
namespace CamilStaps\BotleaguesApi\Database;

class Participant extends Model {
    
    protected $table = 'competition_types';
    protected $hidden = [];
    protected $fillable = ['botId', 'competitionId'];

}