| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\Models\ModuleSettings;
- use \ThurData\Servers\KerioEmail\Core\Models\ExtendedEloquentModel;
- /**
- * Description of ModuleSettings
- *
- * @var varchar(255) setting
- * @var text value
- *
- * @autor ThurData <info@thurdata.ch>
- */
- class Model extends ExtendedEloquentModel
- {
- /**
- * Table name
- *
- * @var string
- */
- protected $table = 'ModuleSettings';
-
- protected $primaryKey = 'setting';
- /**
- * Eloquent guarded parameters
- * @var array
- */
- protected $guarded = ['setting'];
- /**
- * Eloquent fillable parameters
- * @var array
- */
- protected $fillable = ['setting', 'value'];
- /**
- * Indicates if the model should soft delete.
- *
- * @var bool
- */
- protected $softDelete = false;
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
- }
|