PluginProbe
Redirection / 3.7
Redirection v3.7
5.10.0 5.9.0 5.8.1 5.8.0 3.7.2 3.7.3 4.0 4.0.1 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.3 4.3.1 4.3.2 4.3.3 4.4 4.4.1 4.4.2 4.5 4.5.1 4.6.2 4.7.1 All 130 releases
redirection / database / schema / 232.php

232.php in Redirection 3.7, at database/schema/232.php

16 lines 384 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // Note: not localised as the messages aren't important enough
4 class Red_Database_232 extends Red_Database_Upgrader {
5 public function get_stages() {
6 return [
7 'remove_modules_232' => 'Remove module table',
8 ];
9 }
10
11 protected function remove_modules_232( $wpdb ) {
12 $this->do_query( $wpdb, "DROP TABLE IF EXISTS {$wpdb->prefix}redirection_modules" );
13 return true;
14 }
15 }
16