Displaying 3 results from an estimated 3 matches for "index_sessions_on_updated_at".
2008 Dec 25
2
Switching to active_record_store session management errors out
..._ID" VARCHAR2(255) NOT NULL ENABLE,
"DATA" CLOB,
"CREATED_AT" DATE,
"UPDATED_AT" DATE,
PRIMARY KEY ("ID") ENABLE
)
/
CREATE INDEX "INDEX_SESSIONS_ON_SESSION_ID" ON
"SESSIONS" ("SESSION_ID")
/
CREATE INDEX "INDEX_SESSIONS_ON_UPDATED_AT" ON
"SESSIONS" ("UPDATED_AT")
/
But now, when I try to start my application, I get an error I''ve been
unable to solve. This is the error:
/!\ FAILSAFE /!\ Wed Dec 24 22:36:41 -0500 2008
Status: 500 Internal Server Error
"DESC session" failed; does it ex...
2009 Feb 19
1
Switching to ActiveRecord Session Store
I''m having a problem switching from cookie sessions (the default) to
active record sessions.
I''ve created the sessions table via the rake task, uncommented the
line
config.action_controller.session_store = :active_record_store
in my environment.rb file, cleared out my browsers cookies, restarted
the server (natch), but still the it''s using cookie_store instead of
2011 Sep 18
9
Rails 3 and postgresql
I have a simple project created around a very, very simple database: one
main table packs with just three rows
Column | Type |
Modifiers
--------+-----------------------------+----------------------------------------------------
id | integer | not null default
nextval(''packs_id_seq''::regclass)
nombre | character