spec/dummy/db/schema.rb in enju_leaf-1.1.0.rc14 vs spec/dummy/db/schema.rb in enju_leaf-1.1.0.rc15

- 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 => 20140812093836) do +ActiveRecord::Schema.define(:version => 20140823095740) do create_table "accepts", :force => true do |t| t.integer "basket_id" t.integer "item_id" t.integer "librarian_id" @@ -777,12 +777,13 @@ t.integer "year_of_publication" t.text "attachment_meta" t.integer "month_of_publication" t.boolean "fulltext_content" t.string "doi" - t.boolean "periodical" + t.boolean "serial" t.text "statement_of_responsibility" + t.text "dimensions" end add_index "manifestations", ["access_address"], :name => "index_manifestations_on_access_address" add_index "manifestations", ["date_of_publication"], :name => "index_manifestations_on_date_of_publication" add_index "manifestations", ["doi"], :name => "index_manifestations_on_doi" @@ -1128,9 +1129,35 @@ t.text "note" t.integer "position" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end + + create_table "search_histories", :force => true do |t| + t.integer "user_id" + t.string "operation", :default => "searchRetrieve" + t.float "sru_version", :default => 1.2 + t.string "query" + t.integer "start_record" + t.integer "maximum_records" + t.string "record_packing" + t.string "record_schema" + t.integer "result_set_ttl" + t.string "stylesheet" + t.string "extra_request_data" + t.integer "number_of_records", :default => 0 + t.string "result_set_id" + t.integer "result_set_idle_time" + t.text "records" + t.integer "next_record_position" + t.text "diagnostics" + t.text "extra_response_data" + t.text "echoed_search_retrieve_request" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + + add_index "search_histories", ["user_id"], :name => "index_search_histories_on_user_id" create_table "series_has_manifestations", :force => true do |t| t.integer "series_statement_id" t.integer "manifestation_id" t.integer "position"