diff options
Diffstat (limited to 'includes/installer/OracleUpdater.php')
-rw-r--r-- | includes/installer/OracleUpdater.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/installer/OracleUpdater.php b/includes/installer/OracleUpdater.php index 18468544..03dbd1ce 100644 --- a/includes/installer/OracleUpdater.php +++ b/includes/installer/OracleUpdater.php @@ -103,6 +103,11 @@ class OracleUpdater extends DatabaseUpdater { // 1.24 array( 'addField', 'page', 'page_lang', 'patch-page-page_lang.sql' ), + // 1.25 + array( 'dropTable', 'hitcounter' ), + array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), + array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), + // KEEP THIS AT THE BOTTOM!! array( 'doRebuildDuplicateFunction' ), @@ -172,7 +177,6 @@ class OracleUpdater extends DatabaseUpdater { 'page_id' => 0, 'page_namespace' => 0, 'page_title' => ' ', - 'page_counter' => 0, 'page_is_redirect' => 0, 'page_is_new' => 0, 'page_random' => 0, |