aswi2020merlot-gitlab/app/ArtefactUser.php @ 70f69b41
1 | fb354d59 | rizir01 | <?php
|
---|---|---|---|
2 | |||
3 | |||
4 | namespace App; |
||
5 | |||
6 | |||
7 | class ArtefactUser extends Model |
||
8 | {
|
||
9 | // Table Name
|
||
10 | protected $table = 'artefact_user'; |
||
11 | // Primary Key
|
||
12 | public $primaryKey = 'artefact_id'; |
||
13 | |||
14 | /**
|
||
15 | * Indicates if the model should be timestamped.
|
||
16 | *
|
||
17 | * @var bool
|
||
18 | */
|
||
19 | public $timestamps = false; |
||
20 | }
|