mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
fix error in recursive trigger on insert
This commit is contained in:
parent
b7d544f577
commit
f00e3d511a
43
Resources/migrations/Version20180911093642.php
Normal file
43
Resources/migrations/Version20180911093642.php
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Application\Migrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fix error with recursive trigger on update
|
||||||
|
*/
|
||||||
|
final class Version20180911093642 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function up(Schema $schema) : void
|
||||||
|
{
|
||||||
|
$this->addSql("DROP TRIGGER canonicalize_user_on_update ON users");
|
||||||
|
|
||||||
|
$this->addSql(<<<SQL
|
||||||
|
CREATE TRIGGER canonicalize_user_on_update
|
||||||
|
AFTER UPDATE
|
||||||
|
ON users
|
||||||
|
FOR EACH ROW
|
||||||
|
WHEN (pg_trigger_depth() = 0)
|
||||||
|
EXECUTE PROCEDURE canonicalize_user_on_update();
|
||||||
|
SQL
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema) : void
|
||||||
|
{
|
||||||
|
$this->addSql("DROP TRIGGER canonicalize_user_on_update ON users");
|
||||||
|
|
||||||
|
$this->addSql(<<<SQL
|
||||||
|
CREATE TRIGGER canonicalize_user_on_update
|
||||||
|
AFTER UPDATE
|
||||||
|
ON users
|
||||||
|
FOR EACH ROW
|
||||||
|
EXECUTE PROCEDURE canonicalize_user_on_update();
|
||||||
|
SQL
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user