migration_1_0.php
4 years ago
migration_1_6.php
4 years ago
migration_1_8.php
4 years ago
migration_1_9.php
4 years ago
migration_1_9.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Migration_1_9 extends Migration |
| 6 | { |
| 7 | /** |
| 8 | * @var string |
| 9 | */ |
| 10 | protected $database_version = '1.9'; |
| 11 | |
| 12 | /** |
| 13 | * @return void |
| 14 | */ |
| 15 | protected function handle(): void |
| 16 | { |
| 17 | global $wpdb; |
| 18 | |
| 19 | $visitors_table = DB::visitors_table(); |
| 20 | $wpdb->query(" |
| 21 | ALTER TABLE $visitors_table |
| 22 | ADD ( |
| 23 | country_code varchar(256), |
| 24 | city varchar(256), |
| 25 | subdivision varchar(256), |
| 26 | country varchar(256), |
| 27 | continent varchar(256) |
| 28 | ) |
| 29 | "); |
| 30 | } |
| 31 | } |
| 32 |