mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 15:44:30 -04:00
Fix for issue updating
This commit is contained in:
parent
7b5cd4f31c
commit
ce1717cf53
@ -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');
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user