From b4669ad1bb06228c4d5b79890ee9beafa3be8bbe Mon Sep 17 00:00:00 2001 From: Serge Latyntcev Date: Mon, 22 Jun 2020 16:17:14 +1200 Subject: [PATCH] FIX 4.6 regression in the TempDatabase reset schema logic --- src/ORM/Connect/TempDatabase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ORM/Connect/TempDatabase.php b/src/ORM/Connect/TempDatabase.php index 46c38d930..4a5a30b5a 100644 --- a/src/ORM/Connect/TempDatabase.php +++ b/src/ORM/Connect/TempDatabase.php @@ -319,6 +319,8 @@ class TempDatabase $this->kill(); $this->build(); $this->rebuildTables($extraDataObjects); + + $this->skippedException = null; } } }