Tournament.php 286 Bytes
Newer Older
quentin.vrel's avatar
quentin.vrel committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Tournament extends Model
{
    protected $connection = 'mysql';
    protected $table = 'tournament';
    protected $primaryKey = 'id_tournament';
    public $incrementing = true;
    public $timestamps = false;  

}