forked from mirror/pixelfed
18 lines
255 B
PHP
18 lines
255 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
||
|
class OauthClient extends Model
|
||
|
{
|
||
|
|
||
|
protected $table = 'oauth_clients';
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo(User::class);
|
||
|
}
|
||
|
|
||
|
}
|