Added transaction amount column

This commit is contained in:
Glenn Hermans 2021-10-23 13:20:38 +02:00 committed by GitHub
parent bc6f2de1b4
commit 1ed243ebd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -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');
});
}
}