db/schema.rb in iqvoc-3.5.6 vs db/schema.rb in iqvoc-3.5.7
- old
+ new
@@ -9,11 +9,11 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20120201120736) do
+ActiveRecord::Schema.define(:version => 20120412090126) do
create_table "collection_members", :force => true do |t|
t.integer "collection_id"
t.integer "target_id"
t.string "type"
@@ -25,10 +25,11 @@
t.string "type"
t.integer "owner_id"
t.integer "target_id"
t.datetime "created_at"
t.datetime "updated_at"
+ t.integer "rank", :default => 100
end
add_index "concept_relations", ["owner_id", "target_id"], :name => "ix_concept_relations_fk"
create_table "concepts", :force => true do |t|
@@ -88,9 +89,19 @@
t.datetime "updated_at"
end
add_index "matches", ["concept_id", "type"], :name => "ix_matches_fk_type"
add_index "matches", ["type"], :name => "ix_matches_on_type"
+
+ create_table "metrics", :force => true do |t|
+ t.string "name"
+ t.integer "duration"
+ t.integer "request_id"
+ t.integer "parent_id"
+ t.text "payload"
+ t.datetime "started_at"
+ t.datetime "created_at"
+ end
create_table "note_annotations", :force => true do |t|
t.integer "note_id"
t.string "predicate", :limit => 50
t.string "value", :limit => 1024