Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
database
/
migrations
:
2022_06_23_030303_create_bnc_transactions_table.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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'); } }