Files
ProxyPanel/app/Models/Country.php
2023-06-14 22:34:55 +08:00

29 lines
435 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 国家/地区.
*/
class Country extends Model
{
public $timestamps = false;
public $incrementing = false;
protected $table = 'country';
protected $primaryKey = 'code';
protected $keyType = 'string';
protected $guarded = [];
public function nodes()
{
return $this->hasMany(Node::class, 'country_code');
}
}