aswi2020merlot-gitlab/app/ArtefactCategory.php @ 8bb7ed68
1 |
<?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 |
}
|