Show More
Commit Description:
added terminated field to grader process...
Commit Description:
added terminated field to grader process git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@374 6386c4cd-e34a-4fa8-8920-d93eb39b512e
File last commit:
Show/Diff file:
Action:
db/migrate/023_add_runstat_columns_to_test_request.rb | 13 lines | 414 B | text/x-ruby | RubyLexer |
class AddRunstatColumnsToTestRequest < ActiveRecord::Migration
def self.up
add_column :test_requests, :running_time, :float
add_column :test_requests, :exit_status, :string
add_column :test_requests, :memory_usage, :integer
end
def self.down
remove_column :test_requests, :running_time
remove_column :test_requests, :exit_status
remove_column :test_requests, :memory_usage
end
end