Dirty logging to DB
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class CreateRakeControlRuns < ActiveRecord::Migration
|
||||
def up
|
||||
create_table :rake_control_runs do |t|
|
||||
t.string :name
|
||||
t.boolean :success
|
||||
t.float :execution_time
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
drop_table :rake_control_runs
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user