1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 11:52:34 +01:00
BookStack/app/SocialAccount.php

14 lines
235 B
PHP
Raw Normal View History

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