mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-23 19:52:20 +00:00
* fix: allow reuse of a database name * style --------- Co-authored-by: Saeed Vaziry <61919774+saeedvaziry@users.noreply.github.com> Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
15 lines
185 B
PHP
15 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class BackupStatus
|
|
{
|
|
const RUNNING = 'running';
|
|
|
|
const FAILED = 'failed';
|
|
|
|
const DELETING = 'deleting';
|
|
|
|
const STOPPED = 'stopped';
|
|
}
|