diff options
Diffstat (limited to 'src/CamilStaps/BotleaguesApi/Database/Participant.php')
-rw-r--r-- | src/CamilStaps/BotleaguesApi/Database/Participant.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CamilStaps/BotleaguesApi/Database/Participant.php b/src/CamilStaps/BotleaguesApi/Database/Participant.php new file mode 100644 index 0000000..584d00c --- /dev/null +++ b/src/CamilStaps/BotleaguesApi/Database/Participant.php @@ -0,0 +1,10 @@ +<?php +namespace CamilStaps\BotleaguesApi\Database; + +class Participant extends Model { + + protected $table = 'competition_types'; + protected $hidden = []; + protected $fillable = ['botId', 'competitionId']; + +}
\ No newline at end of file |