1 | <?php |
||
13 | class Activation extends Model |
||
14 | { |
||
15 | const EXPIRE_DAYS = 7; |
||
16 | const ACTIVATION_HASH_LENGTH = 50; |
||
17 | |||
18 | public $table = 'user_activation'; |
||
19 | |||
20 | /** |
||
21 | * The attributes that are mass assignable. |
||
22 | * |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $fillable = [ |
||
26 | 'token', 'expired', 'user_id' |
||
27 | ]; |
||
28 | |||
29 | public function user() |
||
33 | } |
||
34 |