| 1 | <?php |
||
| 7 | class TillDateFieldUpdate extends DateFieldUpdate |
||
| 8 | { |
||
| 9 | protected $title = 'Migrate tillDate database format to real date'; |
||
| 10 | |||
| 11 | protected $description = 'This wizard migrates the existing tillDate configurations in the ' . |
||
| 12 | 'database from a timestamp to a real date. This enables dates before 1970 and after 2038.'; |
||
| 13 | |||
| 14 | protected $migrationMap = [ |
||
| 15 | 'tx_calendarize_domain_model_configuration' => [ |
||
| 16 | 'till_date', |
||
| 17 | ], |
||
| 18 | ]; |
||
| 19 | |||
| 20 | public function getIdentifier(): string |
||
| 24 | } |
||
| 25 |