| 1 | <?php namespace Modules\Translation\Entities; |
||
| 6 | class TranslationTranslation extends Model |
||
| 7 | { |
||
| 8 | use RevisionableTrait; |
||
| 9 | public $timestamps = false; |
||
| 10 | protected $fillable = ['value']; |
||
| 11 | protected $table = 'translation__translation_translations'; |
||
| 12 | |||
| 13 | protected $revisionEnabled = true; |
||
| 14 | protected $revisionCleanup = true; |
||
| 15 | protected $historyLimit = 100; |
||
| 16 | |||
| 17 | public static function boot() |
||
| 21 | } |
||
| 22 |