Added transaction amount column
This commit is contained in:
parent
bc6f2de1b4
commit
1ed243ebd5
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddTransactionAmountColumn extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('order_transactions', function (Blueprint $table) {
|
||||
$table->decimal('amount', 12, 4)->default(0)->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('order_transactions', function (Blueprint $table) {
|
||||
$table->dropColumn('amount');
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue