From 02b6191d47e5f383665fbb97e311970d7a010d95 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 18 Jan 2015 11:12:17 +0100 Subject: [PATCH] Another attempt at catching the sqlite error. --- app/database/migrations/2015_01_18_082406_changes_for_325.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/database/migrations/2015_01_18_082406_changes_for_325.php b/app/database/migrations/2015_01_18_082406_changes_for_325.php index 5db32ba627..a00985b8bf 100644 --- a/app/database/migrations/2015_01_18_082406_changes_for_325.php +++ b/app/database/migrations/2015_01_18_082406_changes_for_325.php @@ -40,6 +40,8 @@ class ChangesFor325 extends Migration $table->dropUnique('unique_ci_combi'); } catch (QueryException $e) { // don't care. + } catch (\Exception $e) { + // don't care either. } } );