Timestamp in UTC, abstract storage

This commit is contained in:
Gregory Eremin
2013-06-07 12:32:50 +04:00
parent 861c12aa32
commit c6f0f2480d
14 changed files with 84 additions and 32 deletions
@@ -4,7 +4,7 @@ class CreateBurdenRuns < ActiveRecord::Migration
t.string :name
t.boolean :success
t.float :execution_time
t.timestamps
t.datetime :timestamp
end
end
+2 -3
View File
@@ -11,14 +11,13 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130607070108) do
ActiveRecord::Schema.define(:version => 20130607082646) do
create_table "burden_runs", :force => true do |t|
t.string "name"
t.boolean "success"
t.float "execution_time"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.datetime "timestamp"
end
end