database update

This commit is contained in:
Malibu
2015-02-18 23:15:18 +01:00
parent 2addf1a30b
commit 51fd0b06b9
10 changed files with 143 additions and 45 deletions

10
SRC/app/Jeu.php Normal file
View File

@ -0,0 +1,10 @@
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Jeu extends Model {
protected $table = 'jeu';
public $timestamps = false;
}