Projekt

Obecné

Profil

Stáhnout (354 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 b323292b Marek Lovčí
<?php
2
3
4
namespace App;
5
6
7
use Illuminate\Database\Eloquent\Model;
8
9
class ArtefactCategory extends Model
10
{
11
    // Table Name
12
    protected $table = 'artefact_category';
13
    // Primary Key
14
    public $primaryKey = 'artefact_id';
15
16
    /**
17
     * Indicates if the model should be timestamped.
18
     *
19
     * @var bool
20
     */
21
    public $timestamps = false;
22
}