By ciric@drupal.org on
It seems to me that upgrading from 4.7.0 to 4.7.2 does not need to execute update.php.
I understand this because the two update.php files in 4.7.0 and 4.7.2 are identical
May someone confirm that only replacement of drupal directory files is needed and no change in the DB?
Thanks
Comments
not correct
I think there is at least one DB change. The differences are contained not within update.php, but rather in database/updates.inc
Anyhow, there is no harm in running update.php.
---
Work: BioRAFT
Thanks you're right
I realized this by comparing the full folders of 4.7.0. and 4.7.2
In fact this is the output:
Update #180
* ALTER TABLE {node} DROP PRIMARY KEY
* ALTER TABLE {node} ADD PRIMARY KEY (nid, vid)
* ALTER TABLE {node} ADD UNIQUE (vid)
* ALTER TABLE {node} ADD INDEX (nid)
* ALTER TABLE {node_counter} CHANGE nid nid INT(10) NOT NULL DEFAULT '0'
Update #181
* ALTER TABLE {profile_fields} ADD autocomplete TINYINT(1) NOT NULL AFTER visibility ;
Update #182
* No queries
Everything OK now.
Riccardo