Where is the documentation on 'how to' use this module. There is no readme.txt file. How do you add database options to the admin/structure/dbtng/migrator page??

I look forward to trying this module out!

-Dan

Comments

guenoz’s picture

In your settings.php (/sites folder), you should have an array of your databases details, for example :

$databases = array (
  'default' =>
    array (
      'default' =>
        array (
          'database' => 'sites/default/files/.ht.sqlite',
          'driver' => 'sqlite',
          'prefix' =>'',
        ),
	),
  'slave' =>
    array (
      'default' =>
	array (
	  'database' => 'db',
          'username' => 'dbu',
          'password' => 'dbp',
          'host' => 'localhost',
          'port' =>'',
          'driver' => 'mysql',
          'prefix' =>'',
        ),
    ),
);
josh waihi’s picture

Have added a readme file in commit 87547e8

josh waihi’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.