Hintergrundverwaltung und leere Hüllen; neuaufsetzen submodule
This commit is contained in:
19
app/Models/RegisterToken.php
Normal file
19
app/Models/RegisterToken.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken query()
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class RegisterToken extends Model
|
||||
{
|
||||
protected $table = 'register_tokens';
|
||||
protected $primaryKey = 'token';
|
||||
public $incrementing = false;
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user