| 1 | <?php |
||
| 11 | class Voucher 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 = 'vouchers'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Primary Key of the Table |
||
| 29 | * |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | protected $primaryKey = 'id'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Store Function |
||
| 36 | * |
||
| 37 | * A Voucher can't be inserted by the CMS. |
||
| 38 | * Only by the Emulator |
||
| 39 | */ |
||
| 40 | public function store() |
||
| 44 | } |
||
| 45 |