Remove binary attributes from DB, should be json columns
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 33s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
2024-07-07 19:10:00 +10:00
parent 76889728cd
commit 09f2eb8d9d
9 changed files with 46 additions and 8 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Models\Service;
use App\Casts\CollectionOrNull;
use App\Models\SupplierHostServer;
use App\Traits\ServiceDomains;
@@ -13,6 +14,10 @@ class Host extends Type
{
use ServiceDomains;
protected $casts = [
'server_data' => CollectionOrNull::class,
];
protected $table = 'service_host';
protected $with = [
'tld',