aswi2020merlot-gitlab/app/ArtefactCategory.php @ 4c3f70c4
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App; |
4 |
|
5 |
use Illuminate\Database\Eloquent\Model; |
6 |
|
7 |
class ArtefactCategory extends Model |
8 |
{
|
9 |
// Table Name
|
10 |
protected $table = 'artefact_category';//unnecessery? |
11 |
// Primary Key
|
12 |
public $primaryKey = 'artefact_id';//unnecessery? |
13 |
|
14 |
/**
|
15 |
* Indicates if the model should be timestamped.
|
16 |
*
|
17 |
* @var bool
|
18 |
*/
|
19 |
public $timestamps = false; |
20 |
|
21 |
|
22 |
|
23 |
|
24 |
}
|