Hi. I would like to know if my tables (variables) will be upgraded 2x when Im gona upgrade drupal and my sites.
I have 1 codebase - 1 drupal installation and few sites in drupal/sites/ directory. All sites has it's own subdomains and domains and all have their own databases. But I have some tables i share: USERS, ROLE, AUTHMAP, SESSIONS.
So when I upgrade drupal it will upgrade one database, ok. Now i run update.php on second site when i share some tables in databse - the question is, will USERS, ROLE, AUTHMAP, SESSIONS be upgraded again ?
EXAMPLE:
1 base (drupal.sql)
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'drupal',
'username' => 'root',
'password' => 'pass',
'host' => '127.0.0.1',
'port' => '',
'driver' => 'mysql',
'db_prefix' => '',
),
),
);
2 baza (drupal2.sql)
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'drupal2',
'username' => 'root',
'password' => 'pass',
'host' => '127.0.0.1',
'port' => '',
'driver' => 'mysql',
'db_prefix' => array(
'default' => '',
'users' => 'drupal.',
'sessions' => 'drupal.',
'role' => 'drupal.',
'authmap' => 'drupal.',
),
),
),
);
3 base (drupal3.sql)
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'drupal3',