| 1 | <?php |
||
| 11 | class EmulatorSettings extends ChocolateyModel |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Disable Timestamps |
||
| 15 | * |
||
| 16 | * @var bool |
||
| 17 | */ |
||
| 18 | public $timestamps = false; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * The table associated with the model. |
||
| 22 | * |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $table = 'emulator_settings'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Primary Key of the Table |
||
| 29 | * |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | protected $primaryKey = 'id'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Store Function |
||
| 36 | */ |
||
| 37 | public function store() |
||
| 41 | } |
||
| 42 |