1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-27 22:01:08 +03:00
bookstack/app/SocialAccount.php

14 lines
230 B
PHP

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