Reputation: 2924
In What table in Drupal is the current version of core (Drupal) stored? I'm looking for a string like 6.2.3.
I don't see it in the system table.
Upvotes: 3
Views: 1791
Reputation: 2336
Also look for this code in system.module:
define('VERSION', '6.19');
Upvotes: 0
Reputation: 5128
6.2.3? Current is Drupal 6.15.
Answer: system table, seek name="system" row, unserialize "info" field, or seek text in this field text like "version";s:4:"6.15"
Also CHANGELOG.txt file you can investigate.
Also see any *.info file in modules folder.
Upvotes: 4