coolify/app/Models/SharedEnvironmentVariable.php
2024-01-23 17:13:23 +01:00

15 lines
241 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SharedEnvironmentVariable extends Model
{
protected $guarded = [];
protected $casts = [
'key' => 'string',
'value' => 'encrypted',
];
}