1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 18:48:21 +00:00
pixelfed/app/OauthClient.php

18 lines
255 B
PHP
Raw Normal View History

2019-02-05 13:57:01 -07:00
<?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);
}
}