db/schema.rb in iqvoc-3.2.7 vs db/schema.rb in iqvoc-3.2.8

- 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 => 20120601094501) 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| @@ -113,9 +114,18 @@ end add_index "notes", ["language"], :name => "ix_notes_on_language" add_index "notes", ["owner_id", "owner_type", "type"], :name => "ix_notes_fk_type" add_index "notes", ["type"], :name => "ix_notes_on_type" + + create_table "page_requests", :force => true do |t| + t.string "path" + t.float "page_duration" + t.float "view_duration" + t.float "db_duration" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end create_table "users", :force => true do |t| t.string "forename" t.string "surname" t.string "email"