mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
php cs fix on migration
This commit is contained in:
parent
a88e052eb6
commit
c5eac09478
@ -15,10 +15,15 @@ use Doctrine\DBAL\Schema\Schema;
|
||||
use Doctrine\Migrations\AbstractMigration;
|
||||
|
||||
/**
|
||||
* Add url to SocialWork Evaluation
|
||||
* Add url to SocialWork Evaluation.
|
||||
*/
|
||||
final class Version20220303113855 extends AbstractMigration
|
||||
{
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
$this->addSql('ALTER TABLE chill_person_social_work_evaluation DROP url');
|
||||
}
|
||||
|
||||
public function getDescription(): string
|
||||
{
|
||||
return 'Add url to SocialWork Evaluation';
|
||||
@ -29,10 +34,4 @@ final class Version20220303113855 extends AbstractMigration
|
||||
$this->addSql('ALTER TABLE chill_person_social_work_evaluation ADD url TEXT DEFAULT NULL');
|
||||
$this->addSql("UPDATE chill_person_social_work_evaluation SET url = CASE WHEN title->>'fr' LIKE 'http%' THEN title->>'fr' ELSE null END;");
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
|
||||
$this->addSql('ALTER TABLE chill_person_social_work_evaluation DROP url');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user