Fixed issue #1539
This commit is contained in:
parent
b79d607113
commit
3bd2fd571d
|
|
@ -50,7 +50,7 @@ class GenerateProducts extends Command
|
|||
* @return mixed
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
{
|
||||
if (! is_string($this->argument('value')) || ! is_numeric($this->argument('quantity'))) {
|
||||
$this->info('Illegal parameters or value of parameters are passed');
|
||||
} else {
|
||||
|
|
@ -63,10 +63,10 @@ class GenerateProducts extends Command
|
|||
} catch (\Exception $e) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
$quantity--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if ($result)
|
||||
$this->info('Product(s) created successfully.');
|
||||
else
|
||||
|
|
|
|||
|
|
@ -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