mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-21 22:11:26 +00:00
Update AccountLog model, add fillable attribute
This commit is contained in:
parent
090b6d0336
commit
1ac60173af
1 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,9 @@ use Illuminate\Database\Eloquent\Model;
|
|||
|
||||
class AccountLog extends Model
|
||||
{
|
||||
|
||||
protected $fillable = ['*'];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
|
|
Loading…
Reference in a new issue