2016-04-30 18:16:06 +02:00
|
|
|
<?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()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->belongsTo(User::class);
|
2015-09-04 21:40:36 +02:00
|
|
|
}
|
|
|
|
}
|