Show More
Commit Description:
* DRY the toggle button via application_helper.rb#toggle_button and _toggle_button.js.haml...
Commit Description:
* DRY the toggle button via application_helper.rb#toggle_button and _toggle_button.js.haml * bootrapize the user_admin * now considering user.enabled * tidy up route
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