]> BookStack Code Mirror - bookstack/blob - app/SocialAccount.php
Merge branch 'master' of https://github.com/BookStackApp/BookStack
[bookstack] / app / SocialAccount.php
1 <?php namespace BookStack;
2
3
4 class SocialAccount extends Model
5 {
6
7     protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
8
9     public function user()
10     {
11         return $this->belongsTo(User::class);
12     }
13 }