increments('id'); $table->float('withdraw_minimum')->nullable(); $table->float('withdraw_maximum')->nullable(); $table->integer('withdraw_allow_month')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('payouts'); } }