2020-10-04 14:21:09 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ServerShadowsocks extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'v2_server_shadowsocks';
|
|
|
|
protected $dateFormat = 'U';
|
|
|
|
protected $guarded = ['id'];
|
2021-08-01 22:56:11 +08:00
|
|
|
protected $casts = [
|
|
|
|
'created_at' => 'timestamp',
|
2021-08-06 00:43:01 +08:00
|
|
|
'updated_at' => 'timestamp',
|
2021-08-06 22:41:41 +08:00
|
|
|
'group_id' => 'array',
|
2022-11-27 15:11:10 +08:00
|
|
|
'route_id' => 'array',
|
2022-05-12 02:39:59 +08:00
|
|
|
'tags' => 'array',
|
|
|
|
'obfs_settings' => 'array'
|
2021-08-01 22:56:11 +08:00
|
|
|
];
|
2020-10-04 14:21:09 +08:00
|
|
|
}
|