Dirty logging to DB

This commit is contained in:
Gregory Eremin
2013-06-06 18:15:38 +04:00
parent f7964df0b6
commit 802fe508ea
18 changed files with 140 additions and 74 deletions
@@ -1,9 +0,0 @@
module RakeControl
class Run
include MongoMapper::Document
key :name, String
key :success, Boolean
key :execution_time, Float
end
end
@@ -0,0 +1,13 @@
module RakeControl
module Storage
module MongoMapper
class Run
include ::MongoMapper::Document
key :name, String
key :success, Boolean
key :execution_time, Float
end
end
end
end