Show More
Commit Description:
removed caching on Configuration...
Commit Description:
removed caching on Configuration
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@285 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
db/migrate/009_add_sessions.rb
| 16 lines
| 335 B
| text/x-ruby
| RubyLexer
|
|
r0 | class AddSessions < ActiveRecord::Migration | ||
def self.up | ||||
create_table :sessions do |t| | ||||
t.column :session_id, :string | ||||
t.column :data, :text | ||||
t.column :updated_at, :datetime | ||||
end | ||||
add_index :sessions, :session_id | ||||
add_index :sessions, :updated_at | ||||
end | ||||
def self.down | ||||
drop_table :sessions | ||||
end | ||||
end | ||||