bigInteger('profile_id')->unique()->unsigned()->nullable()->index()->after('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('profile_id'); }); } }