Show More
Commit Description:
add golden submit button...
Commit Description:
add golden submit button
- When the user submit more than or equal to 100 times the submit button will turn gold
- Add golden-btn tag in applications.css.scss
References:
File last commit:
Show/Diff file:
Action:
db/migrate/023_add_runstat_columns_to_test_request.rb
| 13 lines
| 419 B
| text/x-ruby
| RubyLexer
|
r822 | class AddRunstatColumnsToTestRequest < ActiveRecord::Migration[4.2] | |||
|
r81 | def self.up | ||
|
r82 | add_column :test_requests, :running_time, :float | ||
|
r81 | 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 | ||||