coolify/app/Models/SharedEnvironmentVariable.php

15 lines
241 B
PHP
Raw Normal View History

2024-01-23 17:13:23 +01:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SharedEnvironmentVariable extends Model
{
protected $guarded = [];
protected $casts = [
'key' => 'string',
'value' => 'encrypted',
];
}