mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 07:59:20 +00:00
初始化
This commit is contained in:
19
app/Http/Models/VerifyCode.php
Normal file
19
app/Http/Models/VerifyCode.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* 注册时的激活验证码
|
||||
* Class VerifyCode
|
||||
*
|
||||
* @package App\Http\Models
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class VerifyCode extends Model
|
||||
{
|
||||
protected $table = 'verify_code';
|
||||
protected $primaryKey = 'id';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user