Migration.php
3 years ago
Migration_1_0.php
3 years ago
Migration_1_6.php
3 years ago
Migration_1_8.php
3 years ago
Migration_1_9.php
3 years ago
Migration_2.php
3 years ago
Migration_3.php
3 years ago
Migration_4.php
3 years ago
Migration_5.php
3 years ago
Migration_6.php
3 years ago
Migration_7.php
3 years ago
Migration_8.php
3 years ago
Migration_Job.php
3 years ago
Migration_5.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Migrations; |
| 4 | |
| 5 | use IAWP\Known_Referrers; |
| 6 | |
| 7 | class Migration_5 extends Migration |
| 8 | { |
| 9 | /** |
| 10 | * @var string |
| 11 | */ |
| 12 | protected $database_version = '5'; |
| 13 | |
| 14 | /** |
| 15 | * @return void |
| 16 | */ |
| 17 | protected function handle(): void |
| 18 | { |
| 19 | Known_Referrers::update_known_referrers_database(); |
| 20 | } |
| 21 | } |
| 22 |