remove language_id column from language_strings table

This commit is contained in:
Milos Holba
2021-03-12 23:33:46 +01:00
parent 8be86183fa
commit 353180491b
7 changed files with 20 additions and 48 deletions

View File

@@ -12,7 +12,7 @@ class LanguageString extends Model
public $incrementing = false;
protected $fillable = ['value', 'language_id' ,'key', 'lang'];
protected $fillable = ['value' ,'key', 'lang'];
}