| 1 | <?php |
||
| 16 | class m5_end_date extends \phpbb\db\migration\migration |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * {@inheritDoc} |
||
| 20 | */ |
||
| 21 | public function effectively_installed() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritDoc} |
||
| 28 | */ |
||
| 29 | static public function depends_on() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Add the end date to ads table |
||
| 36 | * |
||
| 37 | * @return array Array of table schema |
||
| 38 | * @access public |
||
| 39 | */ |
||
| 40 | public function update_schema() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Drop the end date from ads table |
||
| 53 | * |
||
| 54 | * @return array Array of table schema |
||
| 55 | * @access public |
||
| 56 | */ |
||
| 57 | public function revert_schema() |
||
| 67 | } |
||
| 68 |