File "2022_06_23_030303_create_bnc_transactions_table-20250405104949.php"
Full Path: /home/fundopuh/trader.fxex.org/database/migrations/2022_06_23_030303_create_bnc_transactions_table-20250405104949.php
File size: 947 bytes
MIME-type: text/x-php
Charset: utf-8
<?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');
}
}