spec/support/db_setup.rb in system-metrics-0.1.0 vs spec/support/db_setup.rb in system-metrics-0.2.0
- old
+ new
@@ -21,13 +21,16 @@
class CreateMeasurements < ActiveRecord::Migration
def self.up
create_table :system_metrics, :force => true do |t|
t.string :name
+ t.string :action
+ t.string :category
t.datetime :started_at
t.string :transaction_id
t.text :payload
t.float :duration
+ t.float :exclusive_duration
t.integer :request_id
t.integer :parent_id
end
end