spec/dummy/db/schema.rb in enju_oai-0.1.0.pre13 vs spec/dummy/db/schema.rb in enju_oai-0.1.0.pre14
- 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 => 20130509185724) do
+ActiveRecord::Schema.define(:version => 20140814070854) do
create_table "accepts", :force => true do |t|
t.integer "basket_id"
t.integer "item_id"
t.integer "librarian_id"
@@ -22,31 +22,42 @@
end
add_index "accepts", ["basket_id"], :name => "index_accepts_on_basket_id"
add_index "accepts", ["item_id"], :name => "index_accepts_on_item_id"
+ create_table "agent_import_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "agent_import_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "agent_import_file_transitions", ["agent_import_file_id"], :name => "index_agent_import_file_transitions_on_agent_import_file_id"
+ add_index "agent_import_file_transitions", ["sort_key", "agent_import_file_id"], :name => "index_agent_import_file_transitions_on_sort_key_and_file_id", :unique => true
+
create_table "agent_import_files", :force => true do |t|
t.integer "parent_id"
t.string "content_type"
t.integer "size"
t.integer "user_id"
t.text "note"
t.datetime "executed_at"
- t.string "state"
t.string "agent_import_file_name"
t.string "agent_import_content_type"
t.integer "agent_import_file_size"
t.datetime "agent_import_updated_at"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "agent_import_fingerprint"
t.text "error_message"
t.string "edit_mode"
+ t.string "user_encoding"
end
add_index "agent_import_files", ["parent_id"], :name => "index_agent_import_files_on_parent_id"
- add_index "agent_import_files", ["state"], :name => "index_agent_import_files_on_state"
add_index "agent_import_files", ["user_id"], :name => "index_agent_import_files_on_user_id"
create_table "agent_import_results", :force => true do |t|
t.integer "agent_import_file_id"
t.integer "agent_id"
@@ -85,11 +96,10 @@
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "agents", :force => true do |t|
- t.integer "user_id"
t.string "last_name"
t.string "middle_name"
t.string "first_name"
t.string "last_name_transcription"
t.string "middle_name_transcription"
@@ -125,11 +135,10 @@
t.integer "agent_type_id", :default => 1, :null => false
t.integer "lock_version", :default => 0, :null => false
t.text "note"
t.integer "required_role_id", :default => 1, :null => false
t.integer "required_score", :default => 0, :null => false
- t.string "state"
t.text "email"
t.text "url"
t.text "full_name_alternative_transcription"
t.string "birth_date"
t.string "death_date"
@@ -139,11 +148,10 @@
add_index "agents", ["agent_identifier"], :name => "index_agents_on_agent_identifier"
add_index "agents", ["country_id"], :name => "index_agents_on_country_id"
add_index "agents", ["full_name"], :name => "index_agents_on_full_name"
add_index "agents", ["language_id"], :name => "index_agents_on_language_id"
add_index "agents", ["required_role_id"], :name => "index_agents_on_required_role_id"
- add_index "agents", ["user_id"], :name => "index_agents_on_user_id", :unique => true
create_table "baskets", :force => true do |t|
t.integer "user_id"
t.text "note"
t.integer "lock_version", :default => 0, :null => false
@@ -174,19 +182,144 @@
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
+ create_table "carrier_type_has_checkout_types", :force => true do |t|
+ t.integer "carrier_type_id", :null => false
+ t.integer "checkout_type_id", :null => false
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "carrier_type_has_checkout_types", ["carrier_type_id"], :name => "index_carrier_type_has_checkout_types_on_m_form_id"
+ add_index "carrier_type_has_checkout_types", ["checkout_type_id"], :name => "index_carrier_type_has_checkout_types_on_checkout_type_id"
+
create_table "carrier_types", :force => true do |t|
t.string "name", :null => false
t.text "display_name"
t.text "note"
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
+ create_table "checked_items", :force => true do |t|
+ t.integer "item_id", :null => false
+ t.integer "basket_id", :null => false
+ t.datetime "due_date", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.integer "librarian_id"
+ end
+
+ add_index "checked_items", ["basket_id"], :name => "index_checked_items_on_basket_id"
+ add_index "checked_items", ["item_id"], :name => "index_checked_items_on_item_id"
+
+ create_table "checkins", :force => true do |t|
+ t.integer "item_id", :null => false
+ t.integer "librarian_id"
+ t.integer "basket_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.integer "lock_version", :default => 0, :null => false
+ end
+
+ add_index "checkins", ["basket_id"], :name => "index_checkins_on_basket_id"
+ add_index "checkins", ["item_id"], :name => "index_checkins_on_item_id"
+ add_index "checkins", ["librarian_id"], :name => "index_checkins_on_librarian_id"
+
+ create_table "checkout_stat_has_manifestations", :force => true do |t|
+ t.integer "manifestation_checkout_stat_id", :null => false
+ t.integer "manifestation_id", :null => false
+ t.integer "checkouts_count"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "checkout_stat_has_manifestations", ["manifestation_checkout_stat_id"], :name => "index_checkout_stat_has_manifestations_on_checkout_stat_id"
+ add_index "checkout_stat_has_manifestations", ["manifestation_id"], :name => "index_checkout_stat_has_manifestations_on_manifestation_id"
+
+ create_table "checkout_stat_has_users", :force => true do |t|
+ t.integer "user_checkout_stat_id", :null => false
+ t.integer "user_id", :null => false
+ t.integer "checkouts_count", :default => 0, :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "checkout_stat_has_users", ["user_checkout_stat_id"], :name => "index_checkout_stat_has_users_on_user_checkout_stat_id"
+ add_index "checkout_stat_has_users", ["user_id"], :name => "index_checkout_stat_has_users_on_user_id"
+
+ create_table "checkout_types", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "checkout_types", ["name"], :name => "index_checkout_types_on_name"
+
+ create_table "checkouts", :force => true do |t|
+ t.integer "user_id"
+ t.integer "item_id", :null => false
+ t.integer "checkin_id"
+ t.integer "librarian_id"
+ t.integer "basket_id"
+ t.datetime "due_date"
+ t.integer "checkout_renewal_count", :default => 0, :null => false
+ t.integer "lock_version", :default => 0, :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "checkouts", ["basket_id"], :name => "index_checkouts_on_basket_id"
+ add_index "checkouts", ["checkin_id"], :name => "index_checkouts_on_checkin_id"
+ add_index "checkouts", ["item_id", "basket_id"], :name => "index_checkouts_on_item_id_and_basket_id", :unique => true
+ add_index "checkouts", ["item_id"], :name => "index_checkouts_on_item_id"
+ add_index "checkouts", ["librarian_id"], :name => "index_checkouts_on_librarian_id"
+ add_index "checkouts", ["user_id"], :name => "index_checkouts_on_user_id"
+
+ create_table "circulation_statuses", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "classification_types", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "classifications", :force => true do |t|
+ t.integer "parent_id"
+ t.string "category", :null => false
+ t.text "note"
+ t.integer "classification_type_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.integer "lft"
+ t.integer "rgt"
+ t.integer "manifestation_id"
+ end
+
+ add_index "classifications", ["category"], :name => "index_classifications_on_category"
+ add_index "classifications", ["classification_type_id"], :name => "index_classifications_on_classification_type_id"
+ add_index "classifications", ["manifestation_id"], :name => "index_classifications_on_manifestation_id"
+ add_index "classifications", ["parent_id"], :name => "index_classifications_on_parent_id"
+
create_table "content_types", :force => true do |t|
t.string "name", :null => false
t.text "display_name"
t.text "note"
t.integer "position"
@@ -238,10 +371,103 @@
end
add_index "donates", ["agent_id"], :name => "index_donates_on_agent_id"
add_index "donates", ["item_id"], :name => "index_donates_on_item_id"
+ create_table "event_categories", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "event_export_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "event_export_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "event_export_file_transitions", ["event_export_file_id"], :name => "index_event_export_file_transitions_on_file_id"
+ add_index "event_export_file_transitions", ["sort_key", "event_export_file_id"], :name => "index_event_export_file_transitions_on_sort_key_and_file_id", :unique => true
+
+ create_table "event_export_files", :force => true do |t|
+ t.integer "user_id"
+ t.string "event_export_file_name"
+ t.string "event_export_content_type"
+ t.integer "event_export_file_size"
+ t.datetime "event_export_updated_at"
+ t.datetime "executed_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "event_import_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "event_import_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "event_import_file_transitions", ["event_import_file_id"], :name => "index_event_import_file_transitions_on_event_import_file_id"
+ add_index "event_import_file_transitions", ["sort_key", "event_import_file_id"], :name => "index_event_import_file_transitions_on_sort_key_and_file_id", :unique => true
+
+ create_table "event_import_files", :force => true do |t|
+ t.integer "parent_id"
+ t.string "content_type"
+ t.integer "size"
+ t.integer "user_id"
+ t.text "note"
+ t.datetime "executed_at"
+ t.string "event_import_file_name"
+ t.string "event_import_content_type"
+ t.integer "event_import_file_size"
+ t.datetime "event_import_updated_at"
+ t.string "edit_mode"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.string "event_import_fingerprint"
+ t.text "error_message"
+ t.string "user_encoding"
+ t.integer "default_library_id"
+ t.integer "default_event_category_id"
+ end
+
+ add_index "event_import_files", ["parent_id"], :name => "index_event_import_files_on_parent_id"
+ add_index "event_import_files", ["user_id"], :name => "index_event_import_files_on_user_id"
+
+ create_table "event_import_results", :force => true do |t|
+ t.integer "event_import_file_id"
+ t.integer "event_id"
+ t.text "body"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "events", :force => true do |t|
+ t.integer "library_id", :null => false
+ t.integer "event_category_id", :null => false
+ t.string "name"
+ t.text "note"
+ t.datetime "start_at"
+ t.datetime "end_at"
+ t.boolean "all_day", :default => false, :null => false
+ t.datetime "deleted_at"
+ t.text "display_name"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "events", ["event_category_id"], :name => "index_events_on_event_category_id"
+ add_index "events", ["library_id"], :name => "index_events_on_library_id"
+
create_table "exemplifies", :force => true do |t|
t.integer "manifestation_id", :null => false
t.integer "item_id", :null => false
t.integer "position"
t.datetime "created_at", :null => false
@@ -298,45 +524,75 @@
end
add_index "identifiers", ["body", "identifier_type_id"], :name => "index_identifiers_on_body_and_identifier_type_id"
add_index "identifiers", ["manifestation_id"], :name => "index_identifiers_on_manifestation_id"
+ create_table "import_request_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "import_request_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "import_request_transitions", ["import_request_id"], :name => "index_import_request_transitions_on_import_request_id"
+ add_index "import_request_transitions", ["sort_key", "import_request_id"], :name => "index_import_request_transitions_on_sort_key_and_request_id", :unique => true
+
create_table "import_requests", :force => true do |t|
t.string "isbn"
- t.string "state"
t.integer "manifestation_id"
t.integer "user_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
add_index "import_requests", ["isbn"], :name => "index_import_requests_on_isbn"
add_index "import_requests", ["manifestation_id"], :name => "index_import_requests_on_manifestation_id"
add_index "import_requests", ["user_id"], :name => "index_import_requests_on_user_id"
+ create_table "item_has_use_restrictions", :force => true do |t|
+ t.integer "item_id", :null => false
+ t.integer "use_restriction_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "item_has_use_restrictions", ["item_id"], :name => "index_item_has_use_restrictions_on_item_id"
+ add_index "item_has_use_restrictions", ["use_restriction_id"], :name => "index_item_has_use_restrictions_on_use_restriction_id"
+
create_table "items", :force => true do |t|
t.string "call_number"
t.string "item_identifier"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.datetime "deleted_at"
- t.integer "shelf_id", :default => 1, :null => false
- t.boolean "include_supplements", :default => false, :null => false
+ t.integer "shelf_id", :default => 1, :null => false
+ t.boolean "include_supplements", :default => false, :null => false
t.text "note"
t.string "url"
t.integer "price"
- t.integer "lock_version", :default => 0, :null => false
- t.integer "required_role_id", :default => 1, :null => false
- t.string "state"
- t.integer "required_score", :default => 0, :null => false
+ t.integer "lock_version", :default => 0, :null => false
+ t.integer "required_role_id", :default => 1, :null => false
+ t.integer "required_score", :default => 0, :null => false
t.datetime "acquired_at"
t.integer "bookstore_id"
t.integer "budget_type_id"
+ t.string "binding_item_identifier"
+ t.string "binding_call_number"
+ t.datetime "binded_at"
+ t.integer "manifestation_id"
+ t.integer "circulation_status_id", :default => 5, :null => false
+ t.integer "checkout_type_id", :default => 1, :null => false
end
+ add_index "items", ["binding_item_identifier"], :name => "index_items_on_binding_item_identifier"
add_index "items", ["bookstore_id"], :name => "index_items_on_bookstore_id"
+ add_index "items", ["checkout_type_id"], :name => "index_items_on_checkout_type_id"
+ add_index "items", ["circulation_status_id"], :name => "index_items_on_circulation_status_id"
add_index "items", ["item_identifier"], :name => "index_items_on_item_identifier"
+ add_index "items", ["manifestation_id"], :name => "index_items_on_manifestation_id"
add_index "items", ["required_role_id"], :name => "index_items_on_required_role_id"
add_index "items", ["shelf_id"], :name => "index_items_on_shelf_id"
create_table "languages", :force => true do |t|
t.string "name", :null => false
@@ -352,10 +608,25 @@
add_index "languages", ["iso_639_1"], :name => "index_languages_on_iso_639_1"
add_index "languages", ["iso_639_2"], :name => "index_languages_on_iso_639_2"
add_index "languages", ["iso_639_3"], :name => "index_languages_on_iso_639_3"
add_index "languages", ["name"], :name => "index_languages_on_name", :unique => true
+ create_table "lending_policies", :force => true do |t|
+ t.integer "item_id", :null => false
+ t.integer "user_group_id", :null => false
+ t.integer "loan_period", :default => 0, :null => false
+ t.datetime "fixed_due_date"
+ t.integer "renewal", :default => 0, :null => false
+ t.integer "fine", :default => 0, :null => false
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "lending_policies", ["item_id", "user_group_id"], :name => "index_lending_policies_on_item_id_and_user_group_id", :unique => true
+
create_table "libraries", :force => true do |t|
t.string "name", :null => false
t.text "display_name"
t.string "short_display_name", :null => false
t.string "zip_code"
@@ -386,11 +657,10 @@
create_table "library_groups", :force => true do |t|
t.string "name", :null => false
t.text "display_name"
t.string "short_name", :null => false
- t.string "email"
t.text "my_networks"
t.text "login_banner"
t.text "note"
t.integer "country_id"
t.integer "position"
@@ -409,10 +679,35 @@
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
+ create_table "manifestation_checkout_stat_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "manifestation_checkout_stat_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "manifestation_checkout_stat_transitions", ["manifestation_checkout_stat_id"], :name => "index_manifestation_checkout_stat_transitions_on_stat_id"
+ add_index "manifestation_checkout_stat_transitions", ["sort_key", "manifestation_checkout_stat_id"], :name => "index_manifestation_checkout_stat_transitions_on_transition", :unique => true
+
+ create_table "manifestation_checkout_stats", :force => true do |t|
+ t.datetime "start_date"
+ t.datetime "end_date"
+ t.text "note"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "started_at"
+ t.datetime "completed_at"
+ t.integer "user_id"
+ end
+
+ add_index "manifestation_checkout_stats", ["user_id"], :name => "index_manifestation_checkout_stats_on_user_id"
+
create_table "manifestation_relationship_types", :force => true do |t|
t.string "name", :null => false
t.text "display_name"
t.text "note"
t.integer "position"
@@ -430,10 +725,35 @@
end
add_index "manifestation_relationships", ["child_id"], :name => "index_manifestation_relationships_on_child_id"
add_index "manifestation_relationships", ["parent_id"], :name => "index_manifestation_relationships_on_parent_id"
+ create_table "manifestation_reserve_stat_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "manifestation_reserve_stat_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "manifestation_reserve_stat_transitions", ["manifestation_reserve_stat_id"], :name => "index_manifestation_reserve_stat_transitions_on_stat_id"
+ add_index "manifestation_reserve_stat_transitions", ["sort_key", "manifestation_reserve_stat_id"], :name => "index_manifestation_reserve_stat_transitions_on_transition", :unique => true
+
+ create_table "manifestation_reserve_stats", :force => true do |t|
+ t.datetime "start_date"
+ t.datetime "end_date"
+ t.text "note"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "started_at"
+ t.datetime "completed_at"
+ t.integer "user_id"
+ end
+
+ add_index "manifestation_reserve_stats", ["user_id"], :name => "index_manifestation_reserve_stats_on_user_id"
+
create_table "manifestations", :force => true do |t|
t.text "original_title", :null => false
t.text "title_alternative"
t.text "title_transcription"
t.string "classification_number"
@@ -460,11 +780,10 @@
t.integer "edition"
t.text "note"
t.boolean "repository_content", :default => false, :null => false
t.integer "lock_version", :default => 0, :null => false
t.integer "required_role_id", :default => 1, :null => false
- t.string "state"
t.integer "required_score", :default => 0, :null => false
t.integer "frequency_id", :default => 1, :null => false
t.boolean "subscription_master", :default => false, :null => false
t.string "attachment_file_name"
t.string "attachment_content_type"
@@ -489,10 +808,11 @@
t.integer "month_of_publication"
t.boolean "fulltext_content"
t.string "doi"
t.boolean "periodical"
t.text "statement_of_responsibility"
+ t.text "publication_place"
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"
@@ -517,10 +837,21 @@
end
add_index "owns", ["agent_id"], :name => "index_owns_on_agent_id"
add_index "owns", ["item_id"], :name => "index_owns_on_item_id"
+ create_table "participates", :force => true do |t|
+ t.integer "agent_id", :null => false
+ t.integer "event_id", :null => false
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "participates", ["agent_id"], :name => "index_participates_on_agent_id"
+ add_index "participates", ["event_id"], :name => "index_participates_on_event_id"
+
create_table "picture_files", :force => true do |t|
t.integer "picture_attachable_id"
t.string "picture_attachable_type"
t.string "content_type"
t.text "title"
@@ -557,10 +888,31 @@
end
add_index "produces", ["agent_id"], :name => "index_produces_on_agent_id"
add_index "produces", ["manifestation_id"], :name => "index_produces_on_manifestation_id"
+ create_table "profiles", :force => true do |t|
+ t.integer "user_id"
+ t.integer "user_group_id"
+ t.integer "library_id"
+ t.string "locale"
+ t.string "user_number"
+ t.text "full_name"
+ t.text "note"
+ t.text "keyword_list"
+ t.integer "required_role_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "expired_at"
+ t.string "checkout_icalendar_token"
+ t.boolean "save_checkout_history", :default => false, :null => false
+ end
+
+ add_index "profiles", ["checkout_icalendar_token"], :name => "index_profiles_on_checkout_icalendar_token", :unique => true
+ add_index "profiles", ["user_id"], :name => "index_profiles_on_user_id"
+ add_index "profiles", ["user_number"], :name => "index_profiles_on_user_number", :unique => true
+
create_table "realize_types", :force => true do |t|
t.string "name"
t.text "display_name"
t.text "note"
t.integer "position"
@@ -596,31 +948,123 @@
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
+ create_table "reserve_stat_has_manifestations", :force => true do |t|
+ t.integer "manifestation_reserve_stat_id", :null => false
+ t.integer "manifestation_id", :null => false
+ t.integer "reserves_count"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "reserve_stat_has_manifestations", ["manifestation_id"], :name => "index_reserve_stat_has_manifestations_on_manifestation_id"
+ add_index "reserve_stat_has_manifestations", ["manifestation_reserve_stat_id"], :name => "index_reserve_stat_has_manifestations_on_m_reserve_stat_id"
+
+ create_table "reserve_stat_has_users", :force => true do |t|
+ t.integer "user_reserve_stat_id", :null => false
+ t.integer "user_id", :null => false
+ t.integer "reserves_count"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "reserve_stat_has_users", ["user_id"], :name => "index_reserve_stat_has_users_on_user_id"
+ add_index "reserve_stat_has_users", ["user_reserve_stat_id"], :name => "index_reserve_stat_has_users_on_user_reserve_stat_id"
+
+ create_table "reserve_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "reserve_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "reserve_transitions", ["reserve_id"], :name => "index_reserve_transitions_on_reserve_id"
+ add_index "reserve_transitions", ["sort_key", "reserve_id"], :name => "index_reserve_transitions_on_sort_key_and_reserve_id", :unique => true
+
+ create_table "reserves", :force => true do |t|
+ t.integer "user_id", :null => false
+ t.integer "manifestation_id", :null => false
+ t.integer "item_id"
+ t.integer "request_status_type_id", :null => false
+ t.datetime "checked_out_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "canceled_at"
+ t.datetime "expired_at"
+ t.datetime "deleted_at"
+ t.boolean "expiration_notice_to_patron", :default => false
+ t.boolean "expiration_notice_to_library", :default => false
+ t.datetime "retained_at"
+ t.datetime "postponed_at"
+ t.integer "lock_version", :default => 0, :null => false
+ end
+
+ add_index "reserves", ["item_id"], :name => "index_reserves_on_item_id"
+ add_index "reserves", ["manifestation_id"], :name => "index_reserves_on_manifestation_id"
+ add_index "reserves", ["request_status_type_id"], :name => "index_reserves_on_request_status_type_id"
+ add_index "reserves", ["user_id"], :name => "index_reserves_on_user_id"
+
+ create_table "resource_export_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "resource_export_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "resource_export_file_transitions", ["resource_export_file_id"], :name => "index_resource_export_file_transitions_on_file_id"
+ add_index "resource_export_file_transitions", ["sort_key", "resource_export_file_id"], :name => "index_resource_export_file_transitions_on_sort_key_and_file_id", :unique => true
+
+ create_table "resource_export_files", :force => true do |t|
+ t.integer "user_id"
+ t.string "resource_export_file_name"
+ t.string "resource_export_content_type"
+ t.integer "resource_export_file_size"
+ t.datetime "resource_export_updated_at"
+ t.datetime "executed_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "resource_import_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "resource_import_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "resource_import_file_transitions", ["resource_import_file_id"], :name => "index_resource_import_file_transitions_on_file_id"
+ add_index "resource_import_file_transitions", ["sort_key", "resource_import_file_id"], :name => "index_resource_import_file_transitions_on_sort_key_and_file_id", :unique => true
+
create_table "resource_import_files", :force => true do |t|
t.integer "parent_id"
t.string "content_type"
t.integer "size"
t.integer "user_id"
t.text "note"
t.datetime "executed_at"
- t.string "state"
t.string "resource_import_file_name"
t.string "resource_import_content_type"
t.integer "resource_import_file_size"
t.datetime "resource_import_updated_at"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "edit_mode"
t.string "resource_import_fingerprint"
t.text "error_message"
+ t.string "user_encoding"
+ t.integer "default_shelf_id"
end
add_index "resource_import_files", ["parent_id"], :name => "index_resource_import_files_on_parent_id"
- add_index "resource_import_files", ["state"], :name => "index_resource_import_files_on_state"
add_index "resource_import_files", ["user_id"], :name => "index_resource_import_files_on_user_id"
create_table "resource_import_results", :force => true do |t|
t.integer "resource_import_file_id"
t.integer "manifestation_id"
@@ -656,10 +1100,26 @@
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
+ create_table "series_statement_merge_lists", :force => true do |t|
+ t.string "title"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "series_statement_merges", :force => true do |t|
+ t.integer "series_statement_id", :null => false
+ t.integer "series_statement_merge_list_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "series_statement_merges", ["series_statement_id"], :name => "index_series_statement_merges_on_series_statement_id"
+ add_index "series_statement_merges", ["series_statement_merge_list_id"], :name => "index_series_statement_merges_on_series_statement_merge_list_id"
+
create_table "series_statements", :force => true do |t|
t.text "original_title"
t.text "numbering"
t.text "title_subseries"
t.text "numbering_subseries"
@@ -696,10 +1156,53 @@
t.boolean "closed", :default => false, :null => false
end
add_index "shelves", ["library_id"], :name => "index_shelves_on_library_id"
+ create_table "subject_heading_types", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "subject_types", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "subjects", :force => true do |t|
+ t.integer "parent_id"
+ t.integer "use_term_id"
+ t.string "term"
+ t.text "term_transcription"
+ t.integer "subject_type_id", :null => false
+ t.text "scope_note"
+ t.text "note"
+ t.integer "required_role_id", :default => 1, :null => false
+ t.integer "lock_version", :default => 0, :null => false
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ t.datetime "deleted_at"
+ t.string "url"
+ t.integer "manifestation_id"
+ t.integer "subject_heading_type_id"
+ end
+
+ add_index "subjects", ["manifestation_id"], :name => "index_subjects_on_manifestation_id"
+ add_index "subjects", ["parent_id"], :name => "index_subjects_on_parent_id"
+ add_index "subjects", ["required_role_id"], :name => "index_subjects_on_required_role_id"
+ add_index "subjects", ["subject_type_id"], :name => "index_subjects_on_subject_type_id"
+ add_index "subjects", ["term"], :name => "index_subjects_on_term"
+ add_index "subjects", ["use_term_id"], :name => "index_subjects_on_use_term_id"
+
create_table "subscribes", :force => true do |t|
t.integer "subscription_id", :null => false
t.integer "work_id", :null => false
t.datetime "start_at", :null => false
t.datetime "end_at", :null => false
@@ -722,20 +1225,100 @@
end
add_index "subscriptions", ["order_list_id"], :name => "index_subscriptions_on_order_list_id"
add_index "subscriptions", ["user_id"], :name => "index_subscriptions_on_user_id"
+ create_table "use_restrictions", :force => true do |t|
+ t.string "name", :null => false
+ t.text "display_name"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "user_checkout_stat_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "user_checkout_stat_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "user_checkout_stat_transitions", ["sort_key", "user_checkout_stat_id"], :name => "index_user_checkout_stat_transitions_on_sort_key_and_stat_id", :unique => true
+ add_index "user_checkout_stat_transitions", ["user_checkout_stat_id"], :name => "index_user_checkout_stat_transitions_on_user_checkout_stat_id"
+
+ create_table "user_checkout_stats", :force => true do |t|
+ t.datetime "start_date"
+ t.datetime "end_date"
+ t.text "note"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "started_at"
+ t.datetime "completed_at"
+ t.integer "user_id"
+ end
+
+ add_index "user_checkout_stats", ["user_id"], :name => "index_user_checkout_stats_on_user_id"
+
+ create_table "user_export_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "user_export_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "user_export_file_transitions", ["sort_key", "user_export_file_id"], :name => "index_user_export_file_transitions_on_sort_key_and_file_id", :unique => true
+ add_index "user_export_file_transitions", ["user_export_file_id"], :name => "index_user_export_file_transitions_on_file_id"
+
+ create_table "user_export_files", :force => true do |t|
+ t.integer "user_id"
+ t.string "user_export_file_name"
+ t.string "user_export_content_type"
+ t.integer "user_export_file_size"
+ t.datetime "user_export_updated_at"
+ t.datetime "executed_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "user_group_has_checkout_types", :force => true do |t|
+ t.integer "user_group_id", :null => false
+ t.integer "checkout_type_id", :null => false
+ t.integer "checkout_limit", :default => 0, :null => false
+ t.integer "checkout_period", :default => 0, :null => false
+ t.integer "checkout_renewal_limit", :default => 0, :null => false
+ t.integer "reservation_limit", :default => 0, :null => false
+ t.integer "reservation_expired_period", :default => 7, :null => false
+ t.boolean "set_due_date_before_closing_day", :default => false, :null => false
+ t.datetime "fixed_due_date"
+ t.text "note"
+ t.integer "position"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.integer "current_checkout_count"
+ end
+
+ add_index "user_group_has_checkout_types", ["checkout_type_id"], :name => "index_user_group_has_checkout_types_on_checkout_type_id"
+ add_index "user_group_has_checkout_types", ["user_group_id"], :name => "index_user_group_has_checkout_types_on_user_group_id"
+
create_table "user_groups", :force => true do |t|
t.string "name"
t.text "display_name"
t.text "note"
t.integer "position"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.datetime "deleted_at"
- t.integer "valid_period_for_new_user", :default => 0, :null => false
+ t.integer "valid_period_for_new_user", :default => 0, :null => false
t.datetime "expired_at"
+ t.integer "number_of_day_to_notify_overdue", :default => 1, :null => false
+ t.integer "number_of_day_to_notify_due_date", :default => 7, :null => false
+ t.integer "number_of_time_to_notify_overdue", :default => 3, :null => false
end
create_table "user_has_roles", :force => true do |t|
t.integer "user_id"
t.integer "role_id"
@@ -744,47 +1327,100 @@
end
add_index "user_has_roles", ["role_id"], :name => "index_user_has_roles_on_role_id"
add_index "user_has_roles", ["user_id"], :name => "index_user_has_roles_on_user_id"
+ create_table "user_import_file_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "user_import_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "user_import_file_transitions", ["sort_key", "user_import_file_id"], :name => "index_user_import_file_transitions_on_sort_key_and_file_id", :unique => true
+ add_index "user_import_file_transitions", ["user_import_file_id"], :name => "index_user_import_file_transitions_on_user_import_file_id"
+
+ create_table "user_import_files", :force => true do |t|
+ t.integer "user_id"
+ t.text "note"
+ t.datetime "executed_at"
+ t.string "user_import_file_name"
+ t.string "user_import_content_type"
+ t.string "user_import_file_size"
+ t.datetime "user_import_updated_at"
+ t.string "user_import_fingerprint"
+ t.string "edit_mode"
+ t.text "error_message"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.string "user_encoding"
+ t.integer "default_library_id"
+ t.integer "default_user_group_id"
+ end
+
+ create_table "user_import_results", :force => true do |t|
+ t.integer "user_import_file_id"
+ t.integer "user_id"
+ t.text "body"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "user_reserve_stat_transitions", :force => true do |t|
+ t.string "to_state"
+ t.text "metadata", :default => "{}"
+ t.integer "sort_key"
+ t.integer "user_reserve_stat_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ add_index "user_reserve_stat_transitions", ["sort_key", "user_reserve_stat_id"], :name => "index_user_reserve_stat_transitions_on_sort_key_and_stat_id", :unique => true
+ add_index "user_reserve_stat_transitions", ["user_reserve_stat_id"], :name => "index_user_reserve_stat_transitions_on_user_reserve_stat_id"
+
+ create_table "user_reserve_stats", :force => true do |t|
+ t.datetime "start_date"
+ t.datetime "end_date"
+ t.text "note"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.datetime "started_at"
+ t.datetime "completed_at"
+ t.integer "user_id"
+ end
+
+ add_index "user_reserve_stats", ["user_id"], :name => "index_user_reserve_stats_on_user_id"
+
create_table "users", :force => true do |t|
- t.string "email", :default => "", :null => false
- t.string "encrypted_password", :default => "", :null => false
+ t.string "email", :default => "", :null => false
+ t.string "encrypted_password", :default => "", :null => false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
- t.integer "sign_in_count", :default => 0
+ t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
- t.string "password_salt"
- t.string "authentication_token"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.string "username"
- t.string "user_number"
- t.string "state"
- t.string "locale"
t.datetime "deleted_at"
t.datetime "expired_at"
- t.integer "library_id", :default => 1, :null => false
- t.integer "required_role_id", :default => 1, :null => false
- t.integer "user_group_id", :default => 1, :null => false
- t.text "note"
- t.text "keyword_list"
- t.integer "failed_attempts", :default => 0
+ t.integer "failed_attempts", :default => 0
t.string "unlock_token"
t.datetime "locked_at"
t.datetime "confirmed_at"
+ t.boolean "save_checkout_history", :default => false, :null => false
+ t.string "checkout_icalendar_token"
end
- add_index "users", ["authentication_token"], :name => "index_users_on_authentication_token", :unique => true
- add_index "users", ["email"], :name => "index_users_on_email", :unique => true
+ add_index "users", ["checkout_icalendar_token"], :name => "index_users_on_checkout_icalendar_token", :unique => true
+ add_index "users", ["email"], :name => "index_users_on_email"
add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
add_index "users", ["unlock_token"], :name => "index_users_on_unlock_token", :unique => true
- add_index "users", ["user_group_id"], :name => "index_users_on_user_group_id"
- add_index "users", ["user_number"], :name => "index_users_on_user_number", :unique => true
add_index "users", ["username"], :name => "index_users_on_username", :unique => true
create_table "versions", :force => true do |t|
t.string "item_type", :null => false
t.integer "item_id", :null => false