mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
* Add database and database users sync * get mysl users * add mariadb and postgres * fix phpstan
18 lines
367 B
PHP
Executable File
18 lines
367 B
PHP
Executable File
<?php
|
|
|
|
namespace App\SSH\Services\Database;
|
|
|
|
class Mysql extends AbstractDatabase
|
|
{
|
|
protected array $systemDbs = ['information_schema', 'performance_schema', 'mysql', 'sys'];
|
|
|
|
protected array $systemUsers = [
|
|
'root',
|
|
'mysql.session',
|
|
'mysql.sys',
|
|
'mysql.infoschema',
|
|
];
|
|
|
|
protected string $defaultCharset = 'utf8mb3';
|
|
}
|