increments('id'); $table->integer('wallet_id')->nullable(); $table->integer('customer_id')->nullable(); $table->increments('deposit')->nullable(); $table->increments('withdrawal')->nullable(); $table->increments('rate')->nullable(); $table->increments('fee')->nullable(); $table->string('fund_uid', 1000)->nullable(); $table->string('fund_extra', 1000)->nullable(); $table->enum('status', ['In order','Locked','Completed'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('transactions'); } }