increments('id'); $table->string('rank_name', 255)->nullable(); $table->string('direct_referral', 255)->nullable(); $table->string('team_invest', 255)->nullable(); $table->string('reward', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ranks'); } }