mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
* SyncDatabases * Collation on Create inc WordPress * Refactored Enum * Resolve sync issue * Fix for PostgreSQL * pint * reversed enum * style adjustments * add unit tests * style * fix tests * more tests --------- Co-authored-by: Saeed Vaziry <61919774+saeedvaziry@users.noreply.github.com> Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
17 lines
332 B
PHP
17 lines
332 B
PHP
<?php
|
|
|
|
namespace App\SSH\Services\Database;
|
|
|
|
class Postgresql extends AbstractDatabase
|
|
{
|
|
protected array $systemDbs = ['template0', 'template1', 'postgres'];
|
|
|
|
protected string $defaultCharset = 'UTF8';
|
|
|
|
protected int $headerLines = 2;
|
|
|
|
protected string $separator = '|';
|
|
|
|
protected bool $removeLastRow = true;
|
|
}
|