Add CHF as the symbol as well as code
This commit is contained in:
parent
08fa4bf8c9
commit
fb9f5baf58
1 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Reference in a new issue