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
:
2021_03_10_083557_create_mt4_details_table-20250405105326.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateMt4DetailsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('mt4_details', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('client_id')->nullable(); $table->string('mt4_id')->nullable(); $table->string('mt4_password')->nullable(); $table->string('type')->nullable(); $table->string('account_type')->nullable(); $table->string('currency')->nullable(); $table->string('leverage')->nullable(); $table->string('server')->nullable(); $table->string('options')->nullable(); $table->string('duration')->nullable(); $table->string('status')->nullable(); $table->datetime('start_date')->nullable(); $table->datetime('end_date')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('mt4_details'); } }