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:
parent
08fa4bf8c9
commit
fb9f5baf58
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user