Skip to content

Commit

Permalink
fix: Missing isTransactional on last migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Jul 12, 2023
1 parent 862ee04 commit 5bf8833
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/RoadizCoreBundle/migrations/Version20230712163432.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ public function down(Schema $schema): void
$this->addSql('ALTER TABLE user_log_entries ADD CONSTRAINT FK_BC2E42C7A76ED395 FOREIGN KEY (user_id) REFERENCES users (id) ON UPDATE NO ACTION ON DELETE SET NULL');
$this->addSql('CREATE INDEX IDX_BC2E42C7A76ED395 ON user_log_entries (user_id)');
}

public function isTransactional(): bool
{
return false;
}
}

0 comments on commit 5bf8833

Please sign in to comment.