mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
styles fixes
This commit is contained in:
@@ -2,13 +2,20 @@
|
||||
|
||||
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;
|
||||
|
||||
use Doctrine\DBAL\Schema\Schema;
|
||||
use Doctrine\Migrations\AbstractMigration;
|
||||
|
||||
/**
|
||||
* Change gender instances of 'neuter' to 'both'
|
||||
* Change gender instances of 'neuter' to 'both'.
|
||||
*/
|
||||
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"');
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
}
|
||||
public function down(Schema $schema): void {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user