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
22 lines
419 B
PHP
22 lines
419 B
PHP
<?php
|
|
|
|
namespace App\SSH\Services\Database;
|
|
|
|
class Postgresql extends AbstractDatabase
|
|
{
|
|
protected array $systemDbs = ['template0', 'template1', 'postgres'];
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
protected array $systemUsers = ['postgres'];
|
|
|
|
protected string $defaultCharset = 'UTF8';
|
|
|
|
protected int $headerLines = 2;
|
|
|
|
protected string $separator = '|';
|
|
|
|
protected bool $removeLastRow = true;
|
|
}
|