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

@ -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

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();
});
}
}