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

- old
+ new

@@ -7,128 +7,180 @@ # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # 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. +# It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(:version => 20120601094501) do +ActiveRecord::Schema.define(version: 20140807123413) do - create_table "collection_members", :force => true do |t| + create_table "collection_members", force: true do |t| t.integer "collection_id" t.integer "target_id" t.string "type" end - add_index "collection_members", ["collection_id", "target_id", "type"], :name => "ix_collections_fk_type" + add_index "collection_members", ["collection_id", "target_id", "type"], name: "ix_collections_fk_type", using: :btree - create_table "concept_relations", :force => true do |t| + create_table "concept_relations", force: true do |t| t.string "type" t.integer "owner_id" t.integer "target_id" t.datetime "created_at" t.datetime "updated_at" - t.integer "rank", :default => 100 + t.integer "rank", default: 100 end - add_index "concept_relations", ["owner_id", "target_id"], :name => "ix_concept_relations_fk" + add_index "concept_relations", ["owner_id", "target_id"], name: "ix_concept_relations_fk", using: :btree - create_table "concepts", :force => true do |t| + create_table "concepts", force: true do |t| t.string "type" - t.string "origin", :limit => 4000 - t.integer "rev", :default => 1 + t.string "origin", limit: 4000 + t.integer "rev", default: 1 t.date "published_at" t.integer "published_version_id" t.integer "locked_by" t.date "expired_at" t.date "follow_up" t.boolean "to_review" t.date "rdf_updated_at" t.datetime "created_at" t.datetime "updated_at" - t.boolean "top_term", :default => false + t.boolean "top_term", default: false end - add_index "concepts", ["origin"], :name => "ix_concepts_on_origin", :length => {"origin"=>255} - add_index "concepts", ["published_version_id"], :name => "ix_concepts_publ_version_id" + add_index "concepts", ["origin"], name: "ix_concepts_on_origin", length: {"origin"=>255}, using: :btree + add_index "concepts", ["published_version_id"], name: "ix_concepts_publ_version_id", using: :btree - create_table "configuration_settings", :force => true do |t| + create_table "configuration_settings", force: true do |t| t.string "key" t.string "value" end - create_table "labelings", :force => true do |t| + create_table "delayed_jobs", force: true do |t| + t.integer "priority", default: 0, null: false + t.integer "attempts", default: 0, null: false + t.text "handler", null: false + t.text "last_error" + t.datetime "run_at" + t.datetime "locked_at" + t.datetime "failed_at" + t.string "locked_by" + t.string "queue" + t.datetime "created_at" + t.datetime "updated_at" + end + + add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority", using: :btree + + create_table "exports", force: true do |t| + t.integer "user_id" + t.text "output" + t.boolean "success", default: false + t.integer "file_type" + t.string "token" + t.datetime "created_at" + t.datetime "updated_at" + t.datetime "finished_at" + t.string "default_namespace" + end + + add_index "exports", ["user_id"], name: "index_exports_on_user_id", using: :btree + + create_table "imports", force: true do |t| + t.integer "user_id" + t.text "output" + t.boolean "success", default: false + t.datetime "created_at" + t.datetime "updated_at" + t.datetime "finished_at" + t.string "import_file" + t.boolean "publish" + t.string "default_namespace" + end + + add_index "imports", ["user_id"], name: "index_imports_on_user_id", using: :btree + + create_table "job_relations", force: true do |t| t.string "type" + t.string "owner_reference" + t.string "job_id" + t.datetime "created_at" + t.datetime "updated_at" + t.string "response_error" + end + + create_table "labelings", force: true do |t| + t.string "type" t.integer "owner_id" t.integer "target_id" t.datetime "created_at" t.datetime "updated_at" end - add_index "labelings", ["owner_id", "target_id", "type"], :name => "ix_labelings_fk_type" - add_index "labelings", ["type"], :name => "ix_labelings_on_type" + add_index "labelings", ["owner_id", "target_id", "type"], name: "ix_labelings_fk_type", using: :btree + add_index "labelings", ["type"], name: "ix_labelings_on_type", using: :btree - create_table "labels", :force => true do |t| + create_table "labels", force: true do |t| t.string "type" - t.string "origin", :limit => 4000 + t.string "origin", limit: 4000 t.string "language" - t.string "value", :limit => 1024 + t.string "value", limit: 1024 t.datetime "created_at" t.datetime "updated_at" t.date "published_at" end - add_index "labels", ["language"], :name => "ix_labels_on_language" - add_index "labels", ["origin"], :name => "ix_labels_on_origin", :length => {"origin"=>255} - add_index "labels", ["value"], :name => "ix_labels_on_value", :length => {"value"=>255} + add_index "labels", ["language"], name: "ix_labels_on_language", using: :btree + add_index "labels", ["origin"], name: "ix_labels_on_origin", length: {"origin"=>255}, using: :btree - create_table "matches", :force => true do |t| + create_table "matches", force: true do |t| t.integer "concept_id" t.string "type" t.string "value" t.datetime "created_at" 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" + add_index "matches", ["concept_id", "type"], name: "ix_matches_fk_type", using: :btree + add_index "matches", ["type"], name: "ix_matches_on_type", using: :btree - create_table "note_annotations", :force => true do |t| + create_table "notations", force: true do |t| + t.integer "concept_id" + t.string "value", limit: 4000 + t.string "data_type", limit: 4000 + end + + add_index "notations", ["concept_id"], name: "index_notations_on_concept_id", using: :btree + + create_table "note_annotations", force: true do |t| t.integer "note_id" - t.string "predicate", :limit => 50 - t.string "value", :limit => 1024 + t.string "predicate", limit: 50 + t.string "value", limit: 1024 t.datetime "created_at" t.datetime "updated_at" - t.string "namespace", :limit => 50 + t.string "namespace", limit: 50 + t.string "language" end - add_index "note_annotations", ["note_id"], :name => "ix_note_annotations_fk" + add_index "note_annotations", ["note_id"], name: "ix_note_annotations_fk", using: :btree - create_table "notes", :force => true do |t| - t.string "language", :limit => 2 - t.string "value", :limit => 4000 - t.string "type", :limit => 50 + create_table "notes", force: true do |t| + t.string "language", limit: 2 + t.string "value", limit: 4000 + t.string "type", limit: 50 t.datetime "created_at" t.datetime "updated_at" t.integer "owner_id" - t.string "owner_type", :null => false + t.string "owner_type", null: false 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" + add_index "notes", ["language"], name: "ix_notes_on_language", using: :btree + add_index "notes", ["owner_id", "owner_type", "type"], name: "ix_notes_fk_type", using: :btree + add_index "notes", ["type"], name: "ix_notes_on_type", using: :btree - 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| + create_table "users", force: true do |t| t.string "forename" t.string "surname" t.string "email" t.string "crypted_password" t.boolean "active" @@ -137,8 +189,9 @@ t.string "password_salt" t.string "persistence_token" t.string "perishable_token" t.string "role" t.string "telephone_number" + t.string "type" end end