fix loading of unread addressees in notification

This commit is contained in:
2021-12-28 19:40:38 +01:00
parent d5d64cdf65
commit b323ddae05
3 changed files with 166 additions and 10 deletions

View File

@@ -0,0 +1,34 @@
<?php
/**
* 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.
*/
declare(strict_types=1);
namespace Chill\Migrations\Main;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20211228183221 extends AbstractMigration
{
public function down(Schema $schema): void
{
$this->addSql('create unique index uniq_5bdc8067567988b4440f6072
on chill_main_notification (relatedentityclass, relatedentityid)');
}
public function getDescription(): string
{
return 'remove unique index which prevent to notify twice an entity';
}
public function up(Schema $schema): void
{
$this->addSql('DROP INDEX uniq_5bdc8067567988b4440f6072');
}
}