increments('id'); $table->integer('customer_id')->nullable(); $table->integer('rate')->nullable(); $table->increments('deposit')->nullable(); $table->increments('withdraw')->nullable(); $table->integer('count')->nullable(); $table->enum('type', ['Withdraw','Deposit','Buy','Sell'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('wallets'); } }