Show More
Commit Description:
binded RAILS_ROOT in judge config to containing rails dir...
Commit Description:
binded RAILS_ROOT in judge config to containing rails dir
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@386 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
db/migrate/20090429014554_create_grader_messages.rb
| 16 lines
| 334 B
| text/x-ruby
| RubyLexer
|
|
r182 | class CreateGraderMessages < ActiveRecord::Migration | ||
def self.up | ||||
create_table :grader_messages do |t| | ||||
t.integer :grader_process_id | ||||
t.integer :command | ||||
t.string :options | ||||
t.integer :target_id | ||||
t.boolean :taken | ||||
t.timestamps | ||||
end | ||||
end | ||||
def self.down | ||||
drop_table :grader_messages | ||||
end | ||||
end | ||||