search for: sessions_session_id_index

Displaying 1 result from an estimated 1 matches for "sessions_session_id_index".

2006 Jun 16
1
Session state using ActiveRecord store
...oller.session_store = :active_record_store I''ve created the table for the session its structure is as follows: CREATE TABLE `sessions` ( `id` int(11) NOT NULL auto_increment, `session_id` varchar(255) default NULL, `data` text, `updated_at` datetime default NULL, PRIMARY KEY (`id`), KEY `sessions_session_id_index` (`session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; However, when I attempt to access the site I get the following message: ================== Application error Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/50...