lasthourcloud/app/Models/Database.php
Andras Bacsai 7eeaf37873 wip
2023-03-27 18:14:33 +02:00

16 lines
225 B
PHP

<?php
namespace App\Models;
class Database extends BaseModel
{
public function environment()
{
return $this->morphTo();
}
public function destination()
{
return $this->morphTo();
}
}