16 lines
336 B
PHP
16 lines
336 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
|
||
|
|
*/
|
||
|
|
|
||
|
|
use Phinx\Migration\AbstractMigration;
|
||
|
|
|
||
|
|
class RemoveMaintenanceKeyMigration extends AbstractMigration
|
||
|
|
{
|
||
|
|
/** @inheritDoc */
|
||
|
|
public function change()
|
||
|
|
{
|
||
|
|
$this->execute('DELETE FROM `setting` WHERE setting = \'MAINTENANCE_KEY\' ');
|
||
|
|
}
|
||
|
|
}
|