mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add CHF as the symbol as well as code
This commit is contained in:
parent
08fa4bf8c9
commit
fb9f5baf58
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Models\Company;
|
use App\Models\Company;
|
||||||
|
use App\Models\Currency;
|
||||||
use App\Models\Gateway;
|
use App\Models\Gateway;
|
||||||
use App\Utils\Ninja;
|
use App\Utils\Ninja;
|
||||||
use Illuminate\Database\Migrations\Migration;
|
use Illuminate\Database\Migrations\Migration;
|
||||||
@ -32,6 +33,9 @@ class ReverseAppleDomainForHosted extends Migration
|
|||||||
$company->update(['markdown_email_enabled' => true]);
|
$company->update(['markdown_email_enabled' => true]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$chf = Currency::find(17);
|
||||||
|
$chf->symbol = 'CHF';
|
||||||
|
$chf->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user