blob: 04fa2c7098396091642c0f519669f72c5e434dd1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace CamilStaps\BotleaguesApi;
use Illuminate\Database\Eloquent\Model;
class Bot extends Model {
protected $table = 'bots';
protected $fillable = ['userId', 'gameId', 'title'];
}
|