1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Add CHF as the symbol as well as code

This commit is contained in:
David Bomba 2022-04-01 09:32:46 +11:00
parent 08fa4bf8c9
commit fb9f5baf58

View File

@ -1,6 +1,7 @@
<?php
use App\Models\Company;
use App\Models\Currency;
use App\Models\Gateway;
use App\Utils\Ninja;
use Illuminate\Database\Migrations\Migration;
@ -32,6 +33,9 @@ class ReverseAppleDomainForHosted extends Migration
$company->update(['markdown_email_enabled' => true]);
});
$chf = Currency::find(17);
$chf->symbol = 'CHF';
$chf->save();
}
/**