diff options
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 424f682a8..b63515223 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -62,6 +62,9 @@ SQL; } protected function addColumn(string $name) { + if ($this->pdo->inTransaction()) { + $this->pdo->commit(); + } Minz_Log::warning(__method__ . ': ' . $name); try { if ($name === 'attributes') { //v1.20.0 |
