update: fix editor

This commit is contained in:
tokumeikoi 2021-08-06 13:01:17 +09:00
parent ab02935fd7
commit 6aa96fe856
5 changed files with 5 additions and 5 deletions

View File

@ -17,6 +17,6 @@ class Server extends Model
'networkSettings' => 'array', 'networkSettings' => 'array',
'dnsSettings' => 'array', 'dnsSettings' => 'array',
'ruleSettings' => 'array', 'ruleSettings' => 'array',
'tag' => 'array' 'tags' => 'array'
]; ];
} }

View File

@ -12,6 +12,6 @@ class ServerShadowsocks extends Model
protected $casts = [ protected $casts = [
'created_at' => 'timestamp', 'created_at' => 'timestamp',
'updated_at' => 'timestamp', 'updated_at' => 'timestamp',
'tag' => 'array' 'tags' => 'array'
]; ];
} }

View File

@ -12,6 +12,6 @@ class ServerTrojan extends Model
protected $casts = [ protected $casts = [
'created_at' => 'timestamp', 'created_at' => 'timestamp',
'updated_at' => 'timestamp', 'updated_at' => 'timestamp',
'tag' => 'array' 'tags' => 'array'
]; ];
} }

View File

@ -236,5 +236,5 @@ return [
| The only modification by laravel config | The only modification by laravel config
| |
*/ */
'version' => '1.5.3.1628182414902' 'version' => '1.5.3.1628222444140'
]; ];

File diff suppressed because one or more lines are too long