0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-03-14 04:12:49 +00:00
BookStackApp_BookStack/app/SocialAccount.php

17 lines
276 B
PHP
Raw Normal View History

2015-09-04 19:40:36 +00:00
<?php
namespace BookStack;
2015-09-04 19:40:36 +00:00
use Illuminate\Database\Eloquent\Model;
class SocialAccount extends Model
{
protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
public function user()
{
return $this->belongsTo('BookStack\User');
2015-09-04 19:40:36 +00:00
}
}