diff options
Diffstat (limited to 'app/Schema/Migration32.php')
| -rw-r--r-- | app/Schema/Migration32.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Schema/Migration32.php b/app/Schema/Migration32.php index 0a47fce140..7516a00caf 100644 --- a/app/Schema/Migration32.php +++ b/app/Schema/Migration32.php @@ -16,6 +16,7 @@ namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; +use Fisharebest\Webtrees\DebugBar; use PDOException; /** @@ -31,6 +32,8 @@ class Migration32 implements MigrationInterface { "ALTER TABLE `##site_setting` CHANGE setting_value setting_value VARCHAR(2000) NOT NULL" )->execute(); } catch (PDOException $ex) { + DebugBar::addThrowable($ex); + // Already done? } |
