This commit is contained in:
Saeed Vaziry
2024-03-24 09:56:34 +01:00
committed by GitHub
parent 884f18db63
commit 4d051330d6
1055 changed files with 14493 additions and 20278 deletions

View File

@ -2,9 +2,7 @@
namespace App\Enums;
use BenSampo\Enum\Enum;
final class Database extends Enum
final class Database
{
const NONE = 'none';
@ -13,4 +11,14 @@ final class Database extends Enum
const MYSQL80 = 'mysql80';
const MARIADB = 'mariadb';
const POSTGRESQL12 = 'postgresql12';
const POSTGRESQL13 = 'postgresql13';
const POSTGRESQL14 = 'postgresql14';
const POSTGRESQL15 = 'postgresql15';
const POSTGRESQL16 = 'postgresql16';
}