enju_inter_library_loan 0.1.0.pre7 → 0.1.0.pre8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/inter_library_loans/edit.html.erb +2 -2
  3. data/app/views/inter_library_loans/index.html.erb +2 -2
  4. data/app/views/inter_library_loans/new.html.erb +2 -2
  5. data/app/views/inter_library_loans/show.html.erb +2 -2
  6. data/lib/enju_inter_library_loan/engine.rb +1 -1
  7. data/lib/enju_inter_library_loan/version.rb +1 -1
  8. data/spec/dummy/app/controllers/application_controller.rb +3 -67
  9. data/spec/dummy/config/application.rb +3 -0
  10. data/spec/dummy/config/application.yml +42 -0
  11. data/spec/dummy/config/initializers/devise.rb +2 -0
  12. data/spec/dummy/db/migrate/{001_create_patrons.rb → 001_create_agents.rb} +9 -18
  13. data/spec/dummy/db/migrate/005_create_manifestations.rb +11 -34
  14. data/spec/dummy/db/migrate/006_create_items.rb +1 -9
  15. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  16. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  17. data/spec/dummy/db/migrate/029_create_subjects.rb +27 -0
  18. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  19. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  20. data/spec/dummy/db/migrate/035_create_reserves.rb +27 -0
  21. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  22. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  23. data/spec/dummy/db/migrate/059_create_libraries.rb +1 -7
  24. data/spec/dummy/db/migrate/069_create_shelves.rb +1 -5
  25. data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
  26. data/spec/dummy/db/migrate/077_create_user_groups.rb +16 -0
  27. data/spec/dummy/db/migrate/080_create_library_groups.rb +1 -6
  28. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  29. data/spec/dummy/db/migrate/113_create_events.rb +23 -0
  30. data/spec/dummy/db/migrate/114_create_event_categories.rb +16 -0
  31. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  32. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  33. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  34. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  35. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  36. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  37. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  38. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  39. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  40. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  41. data/spec/dummy/db/migrate/142_create_classifications.rb +19 -0
  42. data/spec/dummy/db/migrate/144_create_classification_types.rb +16 -0
  43. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +16 -0
  44. data/spec/dummy/db/migrate/{20080905191442_create_patron_types.rb → 146_create_subject_types.rb} +3 -3
  45. data/spec/dummy/db/migrate/149_create_message_templates.rb +18 -0
  46. data/spec/dummy/db/migrate/154_create_messages.rb +24 -0
  47. data/spec/dummy/db/migrate/20080606052544_create_work_has_subjects.rb +18 -0
  48. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +20 -0
  49. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  50. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  51. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +12 -0
  52. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  53. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  54. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  55. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  56. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +22 -0
  57. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +22 -0
  58. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +27 -0
  59. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  60. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  61. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  62. data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +18 -0
  63. data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +17 -0
  64. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  65. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +16 -0
  66. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +16 -0
  67. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  68. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +16 -0
  69. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  70. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  71. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +16 -0
  72. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +16 -0
  73. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  74. data/spec/dummy/db/migrate/20090208044541_create_subject_heading_type_has_subjects.rb +16 -0
  75. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +27 -0
  76. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +17 -0
  77. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  78. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  79. data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +15 -0
  80. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
  81. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  82. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  83. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +12 -0
  84. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  85. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  86. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  87. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  88. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  89. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +15 -0
  90. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  91. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  92. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  93. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  94. data/spec/dummy/db/migrate/20100527113752_create_delayed_jobs.rb +21 -0
  95. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
  96. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  97. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
  98. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  99. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
  100. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +15 -0
  101. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  102. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  103. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
  104. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  105. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +13 -0
  106. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  107. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  108. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  109. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  110. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  111. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  112. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  113. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  114. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +11 -0
  115. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +11 -0
  116. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  117. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  118. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  119. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  120. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  121. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  122. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  123. data/spec/dummy/db/migrate/20111201155456_create_users.rb +3 -0
  124. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +8 -16
  125. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  126. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  127. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  128. data/spec/dummy/db/migrate/20120105101944_add_queue_to_delayed_jobs.rb +9 -0
  129. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +6 -0
  130. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  131. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  132. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  133. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  134. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +5 -0
  135. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  136. data/spec/dummy/db/migrate/20120413051535_add_event_import_fingerprint_to_event_import_file.rb +5 -0
  137. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  138. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  139. data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +5 -0
  140. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  141. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  142. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  143. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  144. data/spec/dummy/db/migrate/20120413170734_add_error_message_to_event_import_file.rb +5 -0
  145. data/spec/dummy/db/migrate/20120415060342_rename_event_import_file_imported_at_to_executed_at.rb +9 -0
  146. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  147. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  148. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  149. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  150. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  151. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  152. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  153. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  154. data/spec/dummy/db/migrate/20130303104849_add_state_index_to_reserve.rb +5 -0
  155. data/spec/dummy/db/migrate/20130303124821_add_retained_at_to_reserve.rb +5 -0
  156. data/spec/dummy/db/migrate/20130304015019_add_postponed_at_to_reserve.rb +5 -0
  157. data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
  158. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
  159. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  160. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  161. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  162. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
  163. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
  164. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
  165. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
  166. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  167. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  168. data/spec/dummy/db/schema.rb +1191 -143
  169. data/spec/dummy/db/test.sqlite3 +0 -0
  170. data/spec/factories/item.rb +1 -1
  171. data/spec/factories/manifestation.rb +1 -0
  172. data/spec/fixtures/{patron_types.yml → agent_types.yml} +4 -4
  173. data/spec/fixtures/{patrons.yml → agents.yml} +46 -46
  174. data/spec/fixtures/carrier_types.yml +51 -0
  175. data/spec/fixtures/checkout_types.yml +34 -0
  176. data/spec/fixtures/circulation_statuses.yml +120 -0
  177. data/spec/fixtures/languages.yml +1901 -0
  178. data/spec/fixtures/libraries.yml +25 -33
  179. metadata +382 -62
  180. data/spec/dummy/app/models/item.rb +0 -7
  181. data/spec/dummy/app/models/library.rb +0 -128
  182. data/spec/dummy/app/models/library_group.rb +0 -86
  183. data/spec/dummy/app/models/manifestation.rb +0 -6
  184. data/spec/dummy/app/models/patron.rb +0 -167
  185. data/spec/dummy/app/models/patron_type.rb +0 -19
  186. data/spec/dummy/app/models/role.rb +0 -5
  187. data/spec/dummy/app/models/shelf.rb +0 -54
  188. data/spec/dummy/app/models/user_has_role.rb +0 -4
  189. data/spec/dummy/db/development.sqlite3 +0 -0
  190. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +0 -9
  191. data/spec/dummy/db/migrate/20110115022329_add_position_to_library_group.rb +0 -9
  192. data/spec/dummy/db/migrate/20111020063828_remove_dsbl_from_library_group.rb +0 -11
@@ -0,0 +1,9 @@
1
+ class AddExpireDateToReserve < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :reserves, :expire_date, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :reserves, :expire_date
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ class AddValidPeriodForNewUserToUserGroup < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :user_groups, :valid_period_for_new_user, :integer, :default => 0, :null => false
4
+ add_column :user_groups, :expired_at, :timestamp
5
+ remove_column :library_groups, :valid_period_for_new_user
6
+ end
7
+
8
+ def self.down
9
+ remove_column :user_groups, :valid_period_for_new_user
10
+ remove_column :user_groups, :expired_at
11
+ add_column :library_groups, :valid_period_for_new_user, :integer, :default => 0, :null => false
12
+ end
13
+ end
@@ -0,0 +1,9 @@
1
+ class AddCurrentCheckoutCountToUserGroupHasCheckoutType < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :user_group_has_checkout_types, :current_checkout_count, :integer
4
+ end
5
+
6
+ def self.down
7
+ remove_column :user_group_has_checkout_types, :current_checkout_count
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class AddEditModeToResourceImportFile < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :resource_import_files, :edit_mode, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :resource_import_files, :edit_mode
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class AddEditionStringToManifestation < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :manifestations, :edition_string, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :manifestations, :edition_string
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ class AddBookstoreIdToItem < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :items, :bookstore_id, :integer
4
+ add_index :items, :bookstore_id
5
+ end
6
+
7
+ def self.down
8
+ remove_index :items, :bookstore_id
9
+ remove_column :items, :bookstore_id
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ class RemoveExpireDateFromReserve < ActiveRecord::Migration
2
+ def self.up
3
+ remove_column :reserves, :expire_date
4
+ end
5
+
6
+ def self.down
7
+ add_column :reserves, :expire_date, :string
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateSeriesStatementMergeLists < ActiveRecord::Migration
2
+ def change
3
+ create_table :series_statement_merge_lists do |t|
4
+ t.string :title
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ class CreateSeriesStatementMerges < ActiveRecord::Migration
2
+ def change
3
+ create_table :series_statement_merges do |t|
4
+ t.integer :series_statement_id, :null => false
5
+ t.integer :series_statement_merge_list_id, :null => false
6
+
7
+ t.timestamps
8
+ end
9
+ add_index :series_statement_merges, :series_statement_id
10
+ add_index :series_statement_merges, :series_statement_merge_list_id
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ class AddNumberOfDayToNotifyOverdueToUserGroup < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :user_groups, :number_of_day_to_notify_overdue, :integer, :default => 1, :null => false
4
+ add_column :user_groups, :number_of_day_to_notify_due_date, :integer, :default => 7, :null => false
5
+ add_column :user_groups, :number_of_time_to_notify_overdue, :integer, :default => 3, :null => false
6
+ end
7
+
8
+ def self.down
9
+ remove_column :user_groups, :number_of_time_to_notify_overdue
10
+ remove_column :user_groups, :number_of_day_to_notify_due_date
11
+ remove_column :user_groups, :number_of_day_to_notify_overdue
12
+ end
13
+ end
@@ -0,0 +1,11 @@
1
+ class AddLftAndRgtToMessage < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :messages, :lft, :integer
4
+ add_column :messages, :rgt, :integer
5
+ end
6
+
7
+ def self.down
8
+ remove_column :messages, :rgt
9
+ remove_column :messages, :lft
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ class AddLftAndRgtToClassification < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :classifications, :lft, :integer
4
+ add_column :classifications, :rgt, :integer
5
+ end
6
+
7
+ def self.down
8
+ remove_column :classifications, :rgt
9
+ remove_column :classifications, :lft
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ class AddVolumeNumberToManifestation < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :manifestations, :volume_number, :integer
4
+ add_column :manifestations, :issue_number, :integer
5
+ add_column :manifestations, :serial_number, :integer
6
+ end
7
+
8
+ def self.down
9
+ remove_column :manifestations, :serial_number
10
+ remove_column :manifestations, :issue_number
11
+ remove_column :manifestations, :volume_number
12
+ end
13
+ end
@@ -0,0 +1,10 @@
1
+ class AddManifestaitonIdToSeriesStatement < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :series_statements, :manifestation_id, :integer
4
+ add_index :series_statements, :manifestation_id
5
+ end
6
+
7
+ def self.down
8
+ remove_column :series_statements, :manifestation_id
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class AddNoteToSeriesStatement < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :series_statements, :note, :text
4
+ end
5
+
6
+ def self.down
7
+ remove_column :series_statements, :note
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ class CreateCreateTypes < ActiveRecord::Migration
2
+ def change
3
+ create_table :create_types do |t|
4
+ t.string :name
5
+ t.text :display_name
6
+ t.text :note
7
+ t.integer :position
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateRealizeTypes < ActiveRecord::Migration
2
+ def change
3
+ create_table :realize_types do |t|
4
+ t.string :name
5
+ t.text :display_name
6
+ t.text :note
7
+ t.integer :position
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateProduceTypes < ActiveRecord::Migration
2
+ def change
3
+ create_table :produce_types do |t|
4
+ t.string :name
5
+ t.text :display_name
6
+ t.text :note
7
+ t.integer :position
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,7 @@
1
+ class AddCreateTypeToCreate < ActiveRecord::Migration
2
+ def change
3
+ add_column :creates, :create_type_id, :integer
4
+ add_column :realizes, :realize_type_id, :integer
5
+ add_column :produces, :produce_type_id, :integer
6
+ end
7
+ end
@@ -6,6 +6,9 @@ class CreateUsers < ActiveRecord::Migration
6
6
  t.string :username
7
7
  t.text :note
8
8
  t.string :locale
9
+ t.string :user_number
10
+ t.integer :library_id
11
+ t.datetime :locked_at
9
12
 
10
13
  t.timestamps
11
14
  end
@@ -19,22 +19,14 @@ class AddDeviseToUsers < ActiveRecord::Migration
19
19
  t.string :current_sign_in_ip
20
20
  t.string :last_sign_in_ip
21
21
 
22
- ## Encryptable
23
- t.string :password_salt
24
-
25
- ## Confirmable
26
- t.string :confirmation_token
27
- t.datetime :confirmed_at
28
- t.datetime :confirmation_sent_at
29
- t.string :unconfirmed_email # Only if using reconfirmable
30
-
31
- ## Lockable
32
- t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
33
- t.string :unlock_token # Only if unlock strategy is :email or :both
34
- t.datetime :locked_at
35
-
36
- # Token authenticatable
37
- t.string :authentication_token
22
+ # t.encryptable
23
+ # t.confirmable
24
+ # t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
25
+ # t.token_authenticatable
26
+
27
+
28
+ # Uncomment below if timestamps were not included in your original model.
29
+ # t.timestamps
38
30
  end
39
31
 
40
32
  add_index :users, :email #, :unique => true
@@ -0,0 +1,5 @@
1
+ class AddSaveCheckoutHistoryToUser < ActiveRecord::Migration
2
+ def change
3
+ add_column :users, :save_checkout_history, :boolean, :default => false, :null => false
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddCheckoutIcalendarTokenToUser < ActiveRecord::Migration
2
+ def change
3
+ add_column :users, :checkout_icalendar_token, :string
4
+ add_index :users, :checkout_icalendar_token, :unique => true
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddShareBookmarksToUser < ActiveRecord::Migration
2
+ def change
3
+ add_column :users, :share_bookmarks, :boolean
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class AddQueueToDelayedJobs < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :delayed_jobs, :queue, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :delayed_jobs, :queue
8
+ end
9
+ end
@@ -0,0 +1,6 @@
1
+ class AddDepthToMessage < ActiveRecord::Migration
2
+ def change
3
+ add_column :messages, :depth, :integer
4
+
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddTitleSubseriesTranscriptionToSeriesStatement < ActiveRecord::Migration
2
+ def change
3
+ add_column :series_statements, :title_subseries_transcription, :text
4
+
5
+ end
6
+ end
@@ -0,0 +1,12 @@
1
+ class CreateBudgetTypes < ActiveRecord::Migration
2
+ def change
3
+ create_table :budget_types do |t|
4
+ t.string :name
5
+ t.text :display_name
6
+ t.text :note
7
+ t.integer :position
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,6 @@
1
+ class AddBudgetTypeIdToItem < ActiveRecord::Migration
2
+ def change
3
+ add_column :items, :budget_type_id, :integer
4
+
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddContentTypeIdToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :content_type_id, :integer, :default => 1
4
+
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddUrlToSubject < ActiveRecord::Migration
2
+ def change
3
+ add_column :subjects, :url, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddYearOfPublicationToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :year_of_publication, :integer
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddEventImportFingerprintToEventImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :event_import_files, :event_import_fingerprint, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddPictureMetaToPictureFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :picture_files, :picture_meta, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddFingerprintToPictureFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :picture_files, :picture_fingerprint, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddFingerprintToInventoryFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :inventory_files, :inventory_fingerprint, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddFingerprintToResourceImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :resource_import_files, :resource_import_fingerprint, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddFingerprintToAgentImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :agent_import_files, :agent_import_fingerprint, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddErrorMessageToResourceImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :resource_import_files, :error_message, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddErrorMessageToAgentImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :agent_import_files, :error_message, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddErrorMessageToEventImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :event_import_files, :error_message, :text
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class RenameEventImportFileImportedAtToExecutedAt < ActiveRecord::Migration
2
+ def up
3
+ rename_column :event_import_files, :imported_at, :executed_at
4
+ end
5
+
6
+ def down
7
+ rename_column :event_import_files, :executed_at, :impored_at
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ class AddAttachmentMetaToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :attachment_meta, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddMonthOfPublicationToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :month_of_publication, :integer
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddLibrarianIdToCheckedItem < ActiveRecord::Migration
2
+ def change
3
+ add_column :checked_items, :librarian_id, :integer
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddClosedToShelf < ActiveRecord::Migration
2
+ def change
3
+ add_column :shelves, :closed, :boolean, :default => false, :null => false
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddAgentIdentifierToAgent < ActiveRecord::Migration
2
+ def change
3
+ add_column :agents, :agent_identifier, :string
4
+ add_index :agents, :agent_identifier
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddEditModeToAgentImportFile < ActiveRecord::Migration
2
+ def change
3
+ add_column :agent_import_files, :edit_mode, :string
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddFulltextContentToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :fulltext_content, :boolean
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddDoiToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :doi, :string
4
+ add_index :manifestations, :doi
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddStateIndexToReserve < ActiveRecord::Migration
2
+ def change
3
+ add_index :reserves, :state
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddRetainedAtToReserve < ActiveRecord::Migration
2
+ def change
3
+ add_column :reserves, :retained_at, :datetime
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddPostponedAtToReserve < ActiveRecord::Migration
2
+ def change
3
+ add_column :reserves, :postponed_at, :datetime
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ class AddCirculationStatusIdToItem < ActiveRecord::Migration
2
+ def change
3
+ add_column :items, :circulation_status_id, :integer, :default => 5, :null => false
4
+ add_column :items, :checkout_type_id, :integer, :default => 1, :null => false
5
+ add_index :items, :circulation_status_id
6
+ add_index :items, :checkout_type_id
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ class AddPeriodicalToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :periodical, :boolean
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ class AddCreatorStringToSeriesStatement < ActiveRecord::Migration
2
+ def change
3
+ add_column :series_statements, :creator_string, :text
4
+ add_column :series_statements, :volume_number_string, :text
5
+ add_column :series_statements, :volume_number_transcription_string, :text
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ class AddSeriesMasterToSeriesStatement < ActiveRecord::Migration
2
+ def change
3
+ add_column :series_statements, :series_master, :boolean
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddRootManifestationIdToSeriesStatement < ActiveRecord::Migration
2
+ def change
3
+ add_column :series_statements, :root_manifestation_id, :integer
4
+ add_index :series_statements, :root_manifestation_id
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddManifestationIdToSubject < ActiveRecord::Migration
2
+ def change
3
+ add_column :subjects, :manifestation_id, :integer
4
+ add_index :subjects, :manifestation_id
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddManifestationIdToClassification < ActiveRecord::Migration
2
+ def change
3
+ add_column :classifications, :manifestation_id, :integer
4
+ add_index :classifications, :manifestation_id
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddSubjectHeadingTypeIdToSubject < ActiveRecord::Migration
2
+ def change
3
+ add_column :subjects, :subject_heading_type_id, :integer
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ class CreateIdentifierTypes < ActiveRecord::Migration
2
+ def change
3
+ create_table :identifier_types do |t|
4
+ t.string :name
5
+ t.text :display_name
6
+ t.text :note
7
+ t.integer :position
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,15 @@
1
+ class CreateIdentifiers < ActiveRecord::Migration
2
+ def change
3
+ create_table :identifiers do |t|
4
+ t.string :body, :null => false
5
+ t.integer :identifier_type_id, :null => false
6
+ t.integer :manifestation_id
7
+ t.boolean :primary
8
+ t.integer :position
9
+
10
+ t.timestamps
11
+ end
12
+ add_index :identifiers, [:body, :identifier_type_id]
13
+ add_index :identifiers, :manifestation_id
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ class AddStatementOfResponsibilityToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :statement_of_responsibility, :text
4
+ end
5
+ end