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

14 lines
230 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(User::class);
2015-09-04 21:40:36 +02:00
}
}