Skip to content

Commit 5b37ec1

Browse files
committed
added config options for SSH
1 parent 5ae4a8f commit 5b37ec1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/dbsync.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@
2525
/**
2626
* Database username
2727
*/
28-
'username' => env('REMOTE_DATABASE_USERNAME', ''),
28+
'username' => env('REMOTE_DATABASE_USERNAME', ''),
2929

3030
/**
3131
* Set the database name
3232
*/
33-
'database' => env('REMOTE_DATABASE_NAME', ''),
33+
'database' => env('REMOTE_DATABASE_NAME', ''),
3434

3535
/**
3636
* Set the database password
3737
*/
38-
'password' => env('REMOTE_DATABASE_PASSWORD', ''),
38+
'password' => env('REMOTE_DATABASE_PASSWORD', ''),
3939

4040
/**
4141
* provide a comma seperated list of tables to ignore, when set the tables specified will not be exported
4242
*/
43-
'ignore' => env('REMOTE_DATABASE_IGNORE_TABLES', ''),
43+
'ignore' => env('REMOTE_DATABASE_IGNORE_TABLES', ''),
4444

4545
/**
4646
* Sets if the exported SQL file will be imported into the current database connection
4747
*/
48-
'ImportSqlFile' => env('REMOTE_IMPORT_FILE', 'true'),
48+
'ImportSqlFile' => env('REMOTE_IMPORT_FILE', 'true'),
4949

5050
/**
5151
* Sets if the generated file.sql will be deleted after it has been imported.

0 commit comments

Comments
 (0)