This commit is contained in:
Prashant Singh 2019-10-03 10:57:07 +05:30
parent b79d607113
commit 3bd2fd571d
2 changed files with 36 additions and 4 deletions

View File

@ -0,0 +1,32 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ChangeRateColumnInCurrencyExchangeRatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('currency_exchange_rates', function (Blueprint $table) {
$table->decimal('rate', 24, 12)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('currency_exchange_rates', function (Blueprint $table) {
$table->decimal('rate', 10, 5)->change();
});
}
}