remove id from language_strings table

This commit is contained in:
Milos Holba
2021-03-02 16:58:38 +01:00
parent 63ba4d3a1d
commit 1536af7a5b
3 changed files with 5 additions and 4 deletions

View File

@@ -8,7 +8,9 @@ class LanguageString extends Model
{
public $timestamps = false;
// public $incrementing = false;
public $primaryKey = null;
public $incrementing = false;
protected $fillable = ['value', 'language_id' ,'key', 'lang'];