From ce1717cf53975c6d3b8ec461b4d05e6b2e31562d Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 5 Feb 2016 10:48:10 +0200 Subject: [PATCH] Fix for issue updating --- .../migrations/2016_01_06_153144_add_invoice_font_support.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2016_01_06_153144_add_invoice_font_support.php b/database/migrations/2016_01_06_153144_add_invoice_font_support.php index a59a7e0cd06b..bc731ede5131 100644 --- a/database/migrations/2016_01_06_153144_add_invoice_font_support.php +++ b/database/migrations/2016_01_06_153144_add_invoice_font_support.php @@ -53,14 +53,14 @@ class AddInvoiceFontSupport extends Migration { if (Schema::hasColumn('accounts', 'header_font_id')) { Schema::table('accounts', function ($table) { - $table->dropForeign('accounts_header_font_id_foreign'); + //$table->dropForeign('accounts_header_font_id_foreign'); $table->dropColumn('header_font_id'); }); } if (Schema::hasColumn('accounts', 'body_font_id')) { Schema::table('accounts', function ($table) { - $table->dropForeign('accounts_body_font_id_foreign'); + //$table->dropForeign('accounts_body_font_id_foreign'); $table->dropColumn('body_font_id'); }); }