BookStack/app/SocialAccount.php

13 lines
229 B
PHP
Raw Normal View History

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