1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-22 15:55:14 +00:00
pixelfed/app/AccountLog.php
2019-02-03 14:47:01 -07:00

13 lines
181 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AccountLog extends Model
{
public function user()
{
return $this->belongsTo(User::class);
}
}