Fixed issue #1539
This commit is contained in:
parent
b79d607113
commit
3bd2fd571d
|
|
@ -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();
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue