v2board/app/Models/ServerShadowsocks.php
2022-05-12 02:39:59 +08:00

20 lines
426 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServerShadowsocks extends Model
{
protected $table = 'v2_server_shadowsocks';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp',
'group_id' => 'array',
'tags' => 'array',
'obfs_settings' => 'array'
];
}