In version 1.5 wp-config.php you should see these lines:
define('DB_HOST', 'localhost');
$table_prefix = 'wp_';
and in version 2:
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
So you shouldn't need to add anything: just change the $table_prefix line...
|