Load social work, and fix some repositories

This commit is contained in:
2021-07-30 23:42:30 +02:00
committed by Marc Ducobu
parent 8a962a4f1c
commit 0e2e7155fb
9 changed files with 623 additions and 427 deletions

View File

@@ -0,0 +1,31 @@
<?php
declare(strict_types=1);
namespace Chill\Migrations\Person;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* add nullable fields to social work evaluation
*/
final class Version20210730205407 extends AbstractMigration
{
public function getDescription(): string
{
return 'add nullable fields to social work evaluation';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER delay DROP NOT NULL');
$this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER notificationdelay DROP NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER delay SET NOT NULL');
$this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER notificationDelay SET NOT NULL');
}
}