increments('id'); $table->integer('withdraw_status')->nullable(); $table->integer('withdraw_type')->nullable(); $table->string('withdraw_date', 255)->nullable(); $table->string('minimum_amount', 50)->nullable(); $table->string('maximum_amount', 50)->nullable(); $table->integer('admin_withdraw_fee')->nullable(); $table->integer('admin_withdraw_fee_type')->nullable(); $table->string('withdraw_limit', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('withdraw_settings'); } }