'Nuf ced... Not working yet.

Comments

rondev’s picture

As indicated in the code, it is still not implemented:

function schema_unprefix_table($name) {
  // TODO: Deal with D7 prefixing

The code only deals with D6 prefixing.
Then in my case, as a temporary workaround, I added a D6 like variable in settings.php :

//D6 prefixing for Schema
$db_prefix = 'd7u_';
//D7 DB config
$databases['default']['default'] = array(
    'driver' => 'mysql',
    'database' => 'd7u',
    'username' => 'drupaluser',
...

Still waiting for code modification. ;-)

FrequenceBanane’s picture

subscribe

laurentchardin’s picture

subscribe

jviitamaki’s picture

sub

markus_petrux’s picture

Related issue: #1223858: Database prefix (without '_') unsupported. It contains a patch that seems to fix the problem. Cheers.

andypost’s picture

Status: Active » Closed (duplicate)