Migration_42.php
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Migrations; |
| 4 | |
| 5 | /** @internal */ |
| 6 | class Migration_42 extends \IAWP\Migrations\Step_Migration |
| 7 | { |
| 8 | /** |
| 9 | * @return int |
| 10 | */ |
| 11 | protected function database_version() : int |
| 12 | { |
| 13 | return 42; |
| 14 | } |
| 15 | /** |
| 16 | * @return array |
| 17 | */ |
| 18 | protected function queries() : array |
| 19 | { |
| 20 | return [$this->update_click_target_protocols()]; |
| 21 | } |
| 22 | private function update_click_target_protocols() : string |
| 23 | { |
| 24 | return "\n ALTER TABLE {$this->tables::click_targets()} \n MODIFY COLUMN protocol ENUM('mailto', 'tel', 'sms');\n "; |
| 25 | } |
| 26 | } |
| 27 |