1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/database/migrations/2022_03_29_014025_reverse_apple_domain_for_hosted.php
2023-02-16 12:36:09 +11:00

57 lines
1.2 KiB
PHP

<?php
use App\Models\Company;
use App\Models\Currency;
use App\Models\Gateway;
use App\Utils\Ninja;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Ninja::isHosted()) {
$stripe_connect = Gateway::find(56);
if ($stripe_connect) {
$stripe_connect->fields = '{"account_id":""}';
$stripe_connect->save();
}
}
Company::cursor()->each(function ($company) {
$company->update(['markdown_email_enabled' => true]);
});
$chf = Currency::find(17);
if ($chf) {
$chf->symbol = 'CHF';
$chf->save();
}
if (Ninja::isSelfHost()) {
$gateway = Gateway::find(20);
if ($gateway) {
$gateway->fields = '{"publishableKey":"","apiKey":"","appleDomainVerification":""}';
$gateway->save();
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};