Change default table name of session active_record_store for rails 2.3.x.
October 19th, 2009
Just a little tip that can save some time. Before rails 2.3.x you should define the new table name like
CGI::Session::ActiveRecordStore::Session.set_table_name “new_table_name”
Now you have to define it like that
ActiveRecord::SessionStore::Session.set_table_name “new_table_name”

Thanks for this. Helped me out heaps.