1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/database/migrations/2020_12_23_220648_remove_null_values_in_countries_table.php
2023-08-06 17:35:19 +10:00

32 lines
730 B
PHP

<?php
use App\Models\Country;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$countries = Country::query()->whereNull('thousand_separator')->update(['thousand_separator' => '']);
$countries = Country::query()->whereNull('decimal_separator')->update(['decimal_separator' => '']);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('countries', function (Blueprint $table) {
//
});
}
};