string('google_2fa_secret')->nullable()->after('remember_token'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('google_2fa_secret'); }); } }