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

class Bot extends Model {
	
    protected $table = 'bots';
    protected $fillable = ['userId', 'gameId', 'title'];
	
}