string('type')->index()->nullable()->after('profile_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('statuses', function (Blueprint $table) { $table->dropColumn('type'); }); } }