Flowdock
method

destroy

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::SessionStore::SqlBypass
destroy() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/session_store.rb, line 273
      def destroy
        unless @new_record
          @@connection.delete "DELETE FROM \#{@@table_name}\nWHERE \#{@@connection.quote_column_name(@@session_id_column)}=\#{@@connection.quote(session_id)}\n", 'Destroy session'
        end
      end
Register or log in to add new notes.