feat: add db name to backup notifications

This commit is contained in:
Andras Bacsai
2024-04-25 12:09:46 +02:00
parent ee69cdbf7b
commit 2770755f9d
12 changed files with 36 additions and 7 deletions

View File

@@ -208,4 +208,7 @@ class StandalonePostgresql extends BaseModel
{
return $this->morphMany(ScheduledDatabaseBackup::class, 'database');
}
public function database_name() {
return $this->postgres_db;
}
}