aboutsummaryrefslogtreecommitdiff
path: root/src/CamilStaps/BotleaguesApi/Database/Bot.php
blob: abdd78ae451718195962b962c88592ad1aa46425 (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 = ['userEmail', 'gameId', 'title'];
	
}