Add migration to create session table in the database.

This commit is contained in:
Tom Hughes 2007-07-30 22:59:20 +00:00
parent 7f92d533d0
commit 87a673e74c

View file

@ -0,0 +1,15 @@
class SqlSessionStoreSetup < ActiveRecord::Migration
def self.up
create_table "sessions", :options => "ENGINE=InnoDB" do |t|
t.column "session_id", :string
t.column "data", :text
t.column "created_at", :timestamp
t.column "updated_at", :timestamp
end
add_index "sessions", ["session_id"], :name => "sessions_session_id_idx", :unique => true
end
def self.down
drop_table "sessions"
end
end