Commit 374ee5c8 authored by Max Kanat-Alexander's avatar Max Kanat-Alexander

Remove some real configuration data that had crept into bzdbcopy.pl.

parent 2e865375
...@@ -32,14 +32,14 @@ use Bugzilla::Util; ...@@ -32,14 +32,14 @@ use Bugzilla::Util;
# Settings for the 'Source' DB that you are copying from. # Settings for the 'Source' DB that you are copying from.
use constant SOURCE_DB_TYPE => 'Mysql'; 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_USER => 'bugs';
use constant SOURCE_DB_PASSWORD => 'buGmElateR'; use constant SOURCE_DB_PASSWORD => '';
use constant SOURCE_DB_HOST => 'localhost'; use constant SOURCE_DB_HOST => 'localhost';
# Settings for the 'Target' DB that you are copying to. # Settings for the 'Target' DB that you are copying to.
use constant TARGET_DB_TYPE => 'Sqlite'; use constant TARGET_DB_TYPE => 'Pg';
use constant TARGET_DB_NAME => 'bugs_tip'; use constant TARGET_DB_NAME => 'bugs';
use constant TARGET_DB_USER => 'bugs'; use constant TARGET_DB_USER => 'bugs';
use constant TARGET_DB_PASSWORD => ''; use constant TARGET_DB_PASSWORD => '';
use constant TARGET_DB_HOST => 'localhost'; use constant TARGET_DB_HOST => 'localhost';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment