| 1 |
<?php |
| 2 |
|
| 3 |
// Note: not localised as the messages aren't important enough |
| 4 |
class Red_Database_201 extends Red_Database_Upgrader { |
| 5 |
public function get_stages() { |
| 6 |
return [ |
| 7 |
'add_title_201' => 'Add titles to redirects', |
| 8 |
]; |
| 9 |
} |
| 10 |
|
| 11 |
protected function add_title_201( $wpdb ) { |
| 12 |
return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD `title` varchar(50) NULL" ); |
| 13 |
} |
| 14 |
} |
| 15 |
|