blob: c826409de477cfbaf5295ec51bcd394c731e206b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
namespace UserFrosting\Sprinkle\ExtendUser\Database\Models;
use UserFrosting\Sprinkle\Core\Database\Models\Model;
class MemberAux extends Model
{
public $timestamps = false;
/**
* @var string The name of the table for the current model.
*/
protected $table = 'members';
protected $fillable = [
'city',
'country'
];
}
|