<?php use App\Models\Deposit; use App\Models\User; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBncTransactionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('bnc_transactions', function (Blueprint $table) { $table->id(); $table->foreignIdFor(User::class)->nullable(); $table->string('prepay_id')->nullable(); $table->foreignIdFor(Deposit::class)->nullable(); $table->string('type')->nullable(); //deposit or withdrawal $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bnc_transactions'); } }