styles fixes

This commit is contained in:
Julie Lenaerts 2023-11-21 11:59:03 +01:00
parent 975ea417b7
commit 0ea6f36297

View File

@ -2,13 +2,20 @@
declare(strict_types=1); declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\Migrations\Person; namespace Chill\Migrations\Person;
use Doctrine\DBAL\Schema\Schema; use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration; use Doctrine\Migrations\AbstractMigration;
/** /**
* Change gender instances of 'neuter' to 'both' * Change gender instances of 'neuter' to 'both'.
*/ */
final class Version20231121070151 extends AbstractMigration final class Version20231121070151 extends AbstractMigration
{ {
@ -22,7 +29,5 @@ final class Version20231121070151 extends AbstractMigration
$this->addSql('UPDATE chill_person_person SET gender = "both" WHERE gender = "neuter"'); $this->addSql('UPDATE chill_person_person SET gender = "both" WHERE gender = "neuter"');
} }
public function down(Schema $schema): void public function down(Schema $schema): void {}
{
}
} }