mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 01:41:36 +00:00
15 lines
189 B
PHP
15 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class DatabaseUserStatus
|
|
{
|
|
const READY = 'ready';
|
|
|
|
const CREATING = 'creating';
|
|
|
|
const FAILED = 'failed';
|
|
|
|
const DELETING = 'deleting';
|
|
}
|