diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-12-16 20:26:19 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-12-16 20:26:19 +0100 |
commit | 374ee5c8a6ad04213de38be4557398bb458219a9 (patch) | |
tree | 77a662e195a31f2fdf1c40fa71fa6500a0e71402 /contrib | |
parent | 2e865375cbc90bdc25c39adc28a14da54e223fcc (diff) | |
download | bugzilla-374ee5c8a6ad04213de38be4557398bb458219a9.tar.gz bugzilla-374ee5c8a6ad04213de38be4557398bb458219a9.tar.xz |
Remove some real configuration data that had crept into bzdbcopy.pl.
https://bugzilla.mozilla.org/show_bug.cgi?id=619581
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/bzdbcopy.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bzdbcopy.pl b/contrib/bzdbcopy.pl index 11bd341f4..688bc28a2 100755 --- a/contrib/bzdbcopy.pl +++ b/contrib/bzdbcopy.pl @@ -32,14 +32,14 @@ use Bugzilla::Util; # Settings for the 'Source' DB that you are copying from. use constant SOURCE_DB_TYPE => 'Mysql'; -use constant SOURCE_DB_NAME => 'bugs_tip'; +use constant SOURCE_DB_NAME => 'bugs'; use constant SOURCE_DB_USER => 'bugs'; -use constant SOURCE_DB_PASSWORD => 'buGmElateR'; +use constant SOURCE_DB_PASSWORD => ''; use constant SOURCE_DB_HOST => 'localhost'; # Settings for the 'Target' DB that you are copying to. -use constant TARGET_DB_TYPE => 'Sqlite'; -use constant TARGET_DB_NAME => 'bugs_tip'; +use constant TARGET_DB_TYPE => 'Pg'; +use constant TARGET_DB_NAME => 'bugs'; use constant TARGET_DB_USER => 'bugs'; use constant TARGET_DB_PASSWORD => ''; use constant TARGET_DB_HOST => 'localhost'; |