mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
243 B
PHP
16 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
namespace Oxbow;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class EmailConfirmation extends Model
|
||
|
{
|
||
|
protected $fillable = ['user_id', 'token'];
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo('Oxbow\User');
|
||
|
}
|
||
|
}
|