You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
438 B
25 lines
438 B
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
class ExpirarContrasena extends Model |
|
{ |
|
|
|
protected $connection = 'mysql'; |
|
|
|
protected $table = 'expirar_contrasena'; |
|
protected $primaryKey = 'id'; |
|
|
|
public $timestamps = false; |
|
|
|
protected $fillable = [ |
|
'fk_id_users', |
|
'dias_expiracion', |
|
'ultima_actualizacion' |
|
]; |
|
|
|
|
|
}
|
|
|