mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore(config): add v4 DB as old_pqsql for the upgrade migration
This commit is contained in:
parent
59f9b1a957
commit
5a20d9fe01
1 changed files with 15 additions and 0 deletions
|
|
@ -59,6 +59,21 @@ return [
|
|||
'search_path' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'old_pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('OLD_DB_URL'),
|
||||
'host' => env('OLD_DB_HOST', 'old-coolify-db'),
|
||||
'port' => env('OLD_DB_PORT', '5555'),
|
||||
'database' => env('OLD_DB_DATABASE', 'coolify'),
|
||||
'username' => env('OLD_DB_USERNAME', 'coolify'),
|
||||
'password' => env('OLD_DB_PASSWORD'),
|
||||
'charset' => env('OLD_DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'search_path' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue