Devise rememberable is supposed to set a remember_user_token cookie on the client so that even when the session cookie is deleted, the user does not have to log in again.
t.rememberable
is set in the create_users migration and devise :rememberable
is present in the user model.