enju_subject 0.3.1 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/Rakefile +1 -1
  4. data/app/controllers/classification_types_controller.rb +1 -1
  5. data/app/controllers/classifications_controller.rb +1 -2
  6. data/app/controllers/subject_heading_types_controller.rb +1 -1
  7. data/app/controllers/subject_types_controller.rb +1 -1
  8. data/app/controllers/subjects_controller.rb +2 -3
  9. data/app/models/classification.rb +1 -1
  10. data/app/models/classification_type.rb +1 -1
  11. data/app/models/subject.rb +1 -1
  12. data/app/models/subject_heading_type.rb +1 -1
  13. data/app/models/subject_type.rb +1 -1
  14. data/app/views/classification_types/_form.html.erb +1 -1
  15. data/app/views/manifestations/_subject_facet.html.erb +1 -1
  16. data/app/views/subject_heading_types/_form.html.erb +1 -1
  17. data/app/views/subject_types/_form.html.erb +1 -1
  18. data/app/views/subject_types/show.html.erb +1 -1
  19. data/lib/enju_subject/version.rb +1 -1
  20. data/lib/generators/enju_subject/setup/setup_generator.rb +0 -1
  21. data/spec/dummy/app/models/application_record.rb +3 -0
  22. data/spec/dummy/config/application.rb +1 -1
  23. data/spec/dummy/db/migrate/059_create_libraries.rb +3 -5
  24. data/spec/dummy/db/migrate/069_create_shelves.rb +1 -2
  25. data/spec/dummy/db/migrate/080_create_library_groups.rb +1 -2
  26. data/spec/dummy/db/migrate/120_create_baskets.rb +1 -2
  27. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +2 -5
  28. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +1 -2
  29. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -2
  30. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +2 -2
  31. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
  32. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +3 -6
  33. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +1 -1
  34. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +2 -2
  35. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
  36. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -2
  37. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +1 -1
  38. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
  39. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +1 -1
  40. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +1 -1
  41. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +1 -3
  42. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +5 -0
  43. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +14 -0
  44. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +3 -5
  45. data/spec/dummy/db/migrate/20151125004028_add_profile_id_to_agent.rb +6 -0
  46. data/spec/dummy/db/migrate/20151126005552_add_provider_to_identity.rb +5 -0
  47. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +11 -6
  48. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +15 -2
  49. data/spec/dummy/db/migrate/20160801080612_add_most_recent_to_import_request_transitions.rb +9 -0
  50. data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb +9 -0
  51. data/spec/dummy/db/migrate/20160801080637_add_most_recent_to_resource_export_file_transitions.rb +9 -0
  52. data/spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb +9 -0
  53. data/spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb +6 -0
  54. data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
  55. data/spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb +5 -0
  56. data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
  57. data/spec/dummy/db/migrate/20171119051258_set_not_null_to_manifestation_id_on_items.rb +5 -0
  58. data/spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb +5 -0
  59. data/spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb +5 -0
  60. data/spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb +5 -0
  61. data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
  62. data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
  63. data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
  64. data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
  65. data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
  66. data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
  67. data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
  68. data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
  69. data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
  70. data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +12 -0
  71. data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +12 -0
  72. data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +12 -0
  73. data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +12 -0
  74. data/spec/dummy/db/schema.rb +110 -13
  75. data/spec/fixtures/library_groups.yml +37 -19
  76. data/spec/lib/generators/enju_subject/setup/setup_generator_spec.rb +1 -0
  77. metadata +315 -213
  78. data/README.rdoc +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3540a976601322093467b5c0415327535ee13c8f352956628bc6566117f1276
4
- data.tar.gz: d5ed07dd1e3aa5e1948283c1385e4cc42ac10c444e31a851ad8dd56c15648f32
3
+ metadata.gz: d32a20b9efe5acb58db6f8785349609f59bb626797cf54ca6dff99bb829b65b7
4
+ data.tar.gz: 524637ea07d613bd759aeda5d4f392fe515b8249b1adbe1af6ee6b6fe9913503
5
5
  SHA512:
6
- metadata.gz: c07e2cdf3deaaf575bb62ac8d11d4229a68ce08ba3f9f1c27e86f721e3946e39185f37137c6f32aedd210692bc9c186144d24d0fbd28a97b553326c4f1a67f93
7
- data.tar.gz: ed378306f83e0b1ceaf393912618dd44c2fd23c6a452433b02064d9e7016b5894aba0c058a4a96720b0333d32715cbe96dcace09a66633bf29e4476fd0f4b43f
6
+ metadata.gz: 175f8b549efd88277a5d70489d74f73e1a993820b5897682ff5c09ddce6925c8ffb8b812da82e6a149773f778fbc5c49fad2b27a742a623e8f723c1e75eb6004
7
+ data.tar.gz: 43ab4857320b8a22667854dcae87ee05ccfe913226c3312324017db772968a5dbfaacfb0d90477f886c604e695e9a8a2ee71a9a61152cdf3275d9bc402a73916
data/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # EnjuSubject
2
+ [![Travis CI](https://travis-ci.com/next-l/enju_subject.svg?branch=1.3)](https://travis-ci.com/next-l/enju_subject)
3
+ [![Coverage Status](https://coveralls.io/repos/github/next-l/enju_subject/badge.svg?branch=1.3)](https://coveralls.io/github/next-l/enju_subject?branch=1.3)
4
+ [![security](https://hakiri.io/github/next-l/enju_subject/1.3.svg)](https://hakiri.io/github/next-l/enju_subject/1.3)
5
+
6
+ This project rocks and uses MIT-LICENSE.
7
+
8
+ ## 製作者・貢献者 (Authors and contributors)
9
+ * [TANABE, Kosuke](https://github.com/nabeta) ([@nabeta](https://twitter.com/nabeta))
10
+ * [Project Next-L](https://www.next-l.jp) ([@ProjectNextL](https://twitter.com/ProjectNextL))
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_dir = 'rdoc'
17
17
  rdoc.title = 'EnjuSubject'
18
18
  rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
19
+ rdoc.rdoc_files.include('README.md')
20
20
  rdoc.rdoc_files.include('lib/**/*.rb')
21
21
  end
22
22
 
@@ -62,7 +62,7 @@ class ClassificationTypesController < ApplicationController
62
62
  end
63
63
 
64
64
  respond_to do |format|
65
- if @classification_type.update_attributes(classification_type_params)
65
+ if @classification_type.update(classification_type_params)
66
66
  format.html { redirect_to @classification_type, notice: t('controller.successfully_updated', model: t('activerecord.models.classification_type')) }
67
67
  format.json { head :no_content }
68
68
  else
@@ -1,4 +1,3 @@
1
- # -*- encoding: utf-8 -*-
2
1
  class ClassificationsController < ApplicationController
3
2
  before_action :set_classification, only: [:show, :edit, :update, :destroy]
4
3
  before_action :check_policy, only: [:index, :new, :create]
@@ -85,7 +84,7 @@ class ClassificationsController < ApplicationController
85
84
  # PUT /classifications/1.json
86
85
  def update
87
86
  respond_to do |format|
88
- if @classification.update_attributes(classification_params)
87
+ if @classification.update(classification_params)
89
88
  format.html { redirect_to @classification, notice: t('controller.successfully_updated', model: t('activerecord.models.classification')) }
90
89
  format.json { head :no_content }
91
90
  else
@@ -62,7 +62,7 @@ class SubjectHeadingTypesController < ApplicationController
62
62
  end
63
63
 
64
64
  respond_to do |format|
65
- if @subject_heading_type.update_attributes(subject_heading_type_params)
65
+ if @subject_heading_type.update(subject_heading_type_params)
66
66
  format.html { redirect_to @subject_heading_type, notice: t('controller.successfully_updated', model: t('activerecord.models.subject_heading_type')) }
67
67
  format.json { head :no_content }
68
68
  else
@@ -62,7 +62,7 @@ class SubjectTypesController < ApplicationController
62
62
  end
63
63
 
64
64
  respond_to do |format|
65
- if @subject_type.update_attributes(subject_type_params)
65
+ if @subject_type.update(subject_type_params)
66
66
  format.html { redirect_to @subject_type, notice: t('controller.successfully_updated', model: t('activerecord.models.subject_type')) }
67
67
  format.json { head :no_content }
68
68
  else
@@ -1,4 +1,3 @@
1
- # -*- encoding: utf-8 -*-
2
1
  class SubjectsController < ApplicationController
3
2
  before_action :set_subject, only: [:show, :edit, :update, :destroy]
4
3
  before_action :check_policy, only: [:index, :new, :create]
@@ -53,7 +52,7 @@ class SubjectsController < ApplicationController
53
52
  # GET /subjects/1.json
54
53
  def show
55
54
  if params[:term]
56
- subject = Subject.where(term: params[:term]).first
55
+ subject = Subject.find_by(term: params[:term])
57
56
  redirected_to subject
58
57
  return
59
58
  end
@@ -107,7 +106,7 @@ class SubjectsController < ApplicationController
107
106
  # PUT /subjects/1.json
108
107
  def update
109
108
  respond_to do |format|
110
- if @subject.update_attributes(subject_params)
109
+ if @subject.update(subject_params)
111
110
  format.html { redirect_to @subject, notice: t('controller.successfully_updated', model: t('activerecord.models.subject')) }
112
111
  format.json { head :no_content }
113
112
  else
@@ -1,4 +1,4 @@
1
- class Classification < ActiveRecord::Base
1
+ class Classification < ApplicationRecord
2
2
  belongs_to :classification_type
3
3
  belongs_to :manifestation, touch: true, optional: true
4
4
 
@@ -1,4 +1,4 @@
1
- class ClassificationType < ActiveRecord::Base
1
+ class ClassificationType < ApplicationRecord
2
2
  include MasterModel
3
3
  has_many :classifications
4
4
  validates :name, format: { with: /\A[0-9a-z][0-9a-z_\-]*[0-9a-z]\Z/ }
@@ -1,4 +1,4 @@
1
- class Subject < ActiveRecord::Base
1
+ class Subject < ApplicationRecord
2
2
  belongs_to :manifestation, touch: true, optional: true
3
3
  belongs_to :subject_type
4
4
  belongs_to :subject_heading_type
@@ -1,4 +1,4 @@
1
- class SubjectHeadingType < ActiveRecord::Base
1
+ class SubjectHeadingType < ApplicationRecord
2
2
  include MasterModel
3
3
  has_many :subjects
4
4
  validates :name, format: {with: /\A[0-9a-z][0-9a-z_\-]*[0-9a-z]\Z/}
@@ -1,4 +1,4 @@
1
- class SubjectType < ActiveRecord::Base
1
+ class SubjectType < ApplicationRecord
2
2
  include MasterModel
3
3
  has_many :subjects
4
4
  validates :name, format: {with: /\A[0-9A-Za-z][0-9a-z_\-]*[0-9a-z]\Z/}
@@ -3,7 +3,7 @@
3
3
 
4
4
  <div class="field">
5
5
  <%= f.label :name %><br />
6
- <%= f.text_field :name, class: 'short_name' %>
6
+ <%= f.text_field :name, required: true, class: 'short_name' %>
7
7
  </div>
8
8
  <div class="field">
9
9
  <%= f.label :display_name %><br />
@@ -2,7 +2,7 @@
2
2
  <%- unless @subject_facet.blank? -%>
3
3
  <ul>
4
4
  <%- @subject_facet[0..19].each do |facet| -%>
5
- <%- subject = Subject.where(id: facet.value).first -%>
5
+ <%- subject = Subject.find_by(id: facet.value) -%>
6
6
  <%- if subject -%>
7
7
  <li>
8
8
  <%= link_to "#{subject.term} (#{facet.count})", url_for(params.permit.merge(page: nil, subject: "\"#{subject.term}\"", view: nil, only_path: true)) -%>
@@ -3,7 +3,7 @@
3
3
 
4
4
  <div class="field">
5
5
  <%= f.label :name %><br />
6
- <%= f.text_field :name %>
6
+ <%= f.text_field :name, required: true %>
7
7
  </div>
8
8
  <div class="field">
9
9
  <%= f.label :display_name %><br />
@@ -3,7 +3,7 @@
3
3
 
4
4
  <div class="field">
5
5
  <%= f.label :name %><br />
6
- <%= f.text_field :name %>
6
+ <%= f.text_field :name, required: true %>
7
7
  </div>
8
8
  <div class="field">
9
9
  <%= f.label :display_name %><br />
@@ -23,7 +23,7 @@
23
23
 
24
24
  <div id="submenu" class="ui-corner-all ui-widget-content">
25
25
  <ul>
26
- <%- if policy().update?@subject_type -%>
26
+ <%- if policy(@subject_type).update? -%>
27
27
  <li><%= link_to t('page.edit'), edit_subject_type_path(@subject_type) %></li>
28
28
  <%- end -%>
29
29
  <li><%= link_to t('page.back'), :back %></li>
@@ -1,3 +1,3 @@
1
1
  module EnjuSubject
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.4".freeze
3
3
  end
@@ -3,7 +3,6 @@ class EnjuSubject::SetupGenerator < Rails::Generators::Base
3
3
 
4
4
  def copy_setup_files
5
5
  directory("db/fixtures", "db/fixtures/enju_subject")
6
- rake("enju_subject_engine:install:migrations")
7
6
  inject_into_file 'app/controllers/application_controller.rb',
8
7
  " include EnjuSubject::Controller\n", after: "EnjuLibrary::Controller\n"
9
8
  append_to_file("app/models/user.rb") do
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -9,7 +9,7 @@ require "enju_leaf"
9
9
  module Dummy
10
10
  class Application < Rails::Application
11
11
  # Initialize configuration defaults for originally generated Rails version.
12
- config.load_defaults 5.1
12
+ config.load_defaults 5.2
13
13
 
14
14
  # Settings in config/environments/* take precedence over those specified here.
15
15
  # Application configuration should go into files in config/initializers
@@ -1,7 +1,7 @@
1
1
  class CreateLibraries < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :libraries do |t|
4
- t.string :name, null: false
4
+ t.string :name, index: true, null: false
5
5
  t.text :display_name
6
6
  t.string :short_display_name, null: false
7
7
  t.string :zip_code
@@ -14,15 +14,13 @@ class CreateLibraries < ActiveRecord::Migration[4.2]
14
14
  t.text :note
15
15
  t.integer :call_number_rows, default: 1, null: false
16
16
  t.string :call_number_delimiter, default: "|", null: false
17
- t.integer :library_group_id, default: 1, null: false
17
+ t.references :library_group, index: true, null: false
18
18
  t.integer :users_count, default: 0, null: false
19
19
  t.integer :position
20
- t.integer :country_id
20
+ t.references :country
21
21
 
22
22
  t.timestamps
23
23
  t.datetime :deleted_at
24
24
  end
25
- add_index :libraries, :library_group_id
26
- add_index :libraries, :name, unique: true
27
25
  end
28
26
  end
@@ -4,12 +4,11 @@ class CreateShelves < ActiveRecord::Migration[4.2]
4
4
  t.string :name, null: false
5
5
  t.text :display_name
6
6
  t.text :note
7
- t.integer :library_id, default: 1, null: false
7
+ t.references :library, index: true, null: false
8
8
  t.integer :items_count, default: 0, null: false
9
9
  t.integer :position
10
10
  t.timestamps
11
11
  t.datetime :deleted_at
12
12
  end
13
- add_index :shelves, :library_id
14
13
  end
15
14
  end
@@ -3,7 +3,7 @@ class CreateLibraryGroups < ActiveRecord::Migration[4.2]
3
3
  create_table :library_groups do |t|
4
4
  t.string :name, null: false
5
5
  t.text :display_name
6
- t.string :short_name, null: false
6
+ t.string :short_name, index: true, null: false
7
7
  t.text :my_networks
8
8
  t.text :login_banner
9
9
  t.text :note
@@ -12,6 +12,5 @@ class CreateLibraryGroups < ActiveRecord::Migration[4.2]
12
12
 
13
13
  t.timestamps
14
14
  end
15
- add_index :library_groups, :short_name
16
15
  end
17
16
  end
@@ -1,12 +1,11 @@
1
1
  class CreateBaskets < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :baskets do |t|
4
- t.integer :user_id
4
+ t.references :user, index: true
5
5
  t.text :note
6
6
  t.integer :lock_version, default: 0, null: false
7
7
 
8
8
  t.timestamps
9
9
  end
10
- add_index :baskets, :user_id
11
10
  end
12
11
  end
@@ -3,15 +3,12 @@ class CreateSubscriptions < ActiveRecord::Migration[4.2]
3
3
  create_table :subscriptions do |t|
4
4
  t.text :title, null: false
5
5
  t.text :note
6
- #t.integer :subscription_list_id, :integer
7
- t.integer :user_id
8
- t.integer :order_list_id
6
+ t.references :user, index: true
7
+ t.references :order_list, index: true
9
8
  t.datetime :deleted_at
10
9
  t.integer :subscribes_count, default: 0, null: false
11
10
 
12
11
  t.timestamps
13
12
  end
14
- add_index :subscriptions, :user_id
15
- add_index :subscriptions, :order_list_id
16
13
  end
17
14
  end
@@ -1,14 +1,13 @@
1
1
  class CreateSubscribes < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :subscribes do |t|
4
- t.integer :subscription_id, null: false
4
+ t.references :subscription, index: true, null: false
5
5
  t.integer :work_id, null: false
6
6
  t.datetime :start_at, null: false
7
7
  t.datetime :end_at, null: false
8
8
 
9
9
  t.timestamps
10
10
  end
11
- add_index :subscribes, :subscription_id
12
11
  add_index :subscribes, :work_id
13
12
  end
14
13
  end
@@ -3,9 +3,7 @@ class CreatePictureFiles < ActiveRecord::Migration[4.2]
3
3
  create_table :picture_files do |t|
4
4
  t.integer :picture_attachable_id
5
5
  t.string :picture_attachable_type
6
- t.string :content_type
7
6
  t.text :title
8
- t.string :thumbnail
9
7
  t.integer :position
10
8
 
11
9
  t.timestamps
@@ -8,7 +8,7 @@ class AddDcndlSchema < ActiveRecord::Migration[4.2]
8
8
  add_column :manifestations, :valid_until, :timestamp
9
9
  add_column :manifestations, :date_submitted, :timestamp
10
10
  add_column :manifestations, :date_accepted, :timestamp
11
- add_column :manifestations, :date_caputured, :timestamp
11
+ add_column :manifestations, :date_captured, :timestamp
12
12
  rename_column :manifestations, :copyright_date, :date_copyrighted
13
13
  end
14
14
 
@@ -21,7 +21,7 @@ class AddDcndlSchema < ActiveRecord::Migration[4.2]
21
21
  remove_column :manifestations, :valid_until
22
22
  remove_column :manifestations, :date_submitted
23
23
  remove_column :manifestations, :date_accepted
24
- remove_column :manifestations, :date_caputured
24
+ remove_column :manifestations, :date_captured
25
25
  rename_column :manifestations, :date_copyrighted, :copyright_date
26
26
  end
27
27
  end
@@ -1,12 +1,10 @@
1
1
  class CreateUserHasRoles < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :user_has_roles do |t|
4
- t.integer :user_id
5
- t.integer :role_id
4
+ t.references :user, index: true, foreign_key: true, null: false
5
+ t.references :role, index: true, foreign_key: true, null: false
6
6
 
7
7
  t.timestamps
8
8
  end
9
- add_index :user_has_roles, :user_id
10
- add_index :user_has_roles, :role_id
11
9
  end
12
10
  end
@@ -1,14 +1,11 @@
1
1
  class CreateAccepts < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :accepts do |t|
4
- t.integer :basket_id
5
- t.integer :item_id
6
- t.integer :librarian_id
4
+ t.references :basket, index: true
5
+ t.references :item, index: true
6
+ t.references :librarian, index: true
7
7
 
8
8
  t.timestamps
9
9
  end
10
-
11
- add_index :accepts, :basket_id
12
- add_index :accepts, :item_id
13
10
  end
14
11
  end
@@ -1,7 +1,7 @@
1
1
  class CreateUserImportFiles < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :user_import_files do |t|
4
- t.integer :user_id
4
+ t.references :user, index: true
5
5
  t.text :note
6
6
  t.datetime :executed_at
7
7
  t.string :user_import_file_name
@@ -1,8 +1,8 @@
1
1
  class CreateUserImportResults < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :user_import_results do |t|
4
- t.integer :user_import_file_id
5
- t.integer :user_id
4
+ t.references :user_import_file, index: true
5
+ t.references :user, index: true
6
6
  t.text :body
7
7
 
8
8
  t.timestamps
@@ -1,20 +1,19 @@
1
1
  class CreateProfiles < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :profiles do |t|
4
- t.integer :user_id
5
- t.integer :user_group_id
6
- t.integer :library_id
4
+ t.references :user, index: true, foreign_key: true
5
+ t.references :user_group, index: true
6
+ t.references :library, index: true
7
7
  t.string :locale
8
8
  t.string :user_number
9
9
  t.text :full_name
10
10
  t.text :note
11
11
  t.text :keyword_list
12
- t.integer :required_role_id
12
+ t.references :required_role, index: false
13
13
 
14
14
  t.timestamps
15
15
  end
16
16
 
17
- add_index :profiles, :user_id
18
17
  add_index :profiles, :user_number, unique: true
19
18
  end
20
19
  end
@@ -8,11 +8,10 @@ class CreateUserImportFileTransitions < ActiveRecord::Migration[4.2]
8
8
  t.text :metadata, default: "{}"
9
9
  end
10
10
  t.integer :sort_key
11
- t.integer :user_import_file_id
11
+ t.references :user_import_file, index: true
12
12
  t.timestamps
13
13
  end
14
14
 
15
- add_index :user_import_file_transitions, :user_import_file_id
16
15
  add_index :user_import_file_transitions, [:sort_key, :user_import_file_id], unique: true, name: "index_user_import_file_transitions_on_sort_key_and_file_id"
17
16
  end
18
17
  end
@@ -1,7 +1,7 @@
1
1
  class CreateUserExportFiles < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :user_export_files do |t|
4
- t.integer :user_id
4
+ t.references :user, index: true
5
5
  t.attachment :user_export
6
6
  t.datetime :executed_at
7
7
 
@@ -8,7 +8,7 @@ class CreateUserExportFileTransitions < ActiveRecord::Migration[4.2]
8
8
  t.text :metadata, default: "{}"
9
9
  end
10
10
  t.integer :sort_key
11
- t.integer :user_export_file_id
11
+ t.references :user_export_file, index: true
12
12
  t.timestamps
13
13
  end
14
14
 
@@ -1,5 +1,5 @@
1
1
  class AddDefaultLibraryIdToUserImportFile < ActiveRecord::Migration[4.2]
2
2
  def change
3
- add_column :user_import_files, :default_library_id, :integer
3
+ add_reference :user_import_files, :default_library
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  class AddDefaultUserGroupIdToUserImportFile < ActiveRecord::Migration[4.2]
2
2
  def change
3
- add_column :user_import_files, :default_user_group_id, :integer
3
+ add_reference :user_import_files, :default_user_group
4
4
  end
5
5
  end
@@ -1,14 +1,12 @@
1
1
  class CreateColors < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :colors do |t|
4
- t.integer :library_group_id
4
+ t.references :library_group, index: true
5
5
  t.string :property
6
6
  t.string :code
7
7
  t.integer :position
8
8
 
9
9
  t.timestamps
10
10
  end
11
-
12
- add_index :colors, :library_group_id
13
11
  end
14
12
  end
@@ -0,0 +1,5 @@
1
+ class AddForeignKeyToItemsReferencingManifestations < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_foreign_key :items, :manifestations
4
+ end
5
+ end
@@ -0,0 +1,14 @@
1
+ class CreateIdentities < ActiveRecord::Migration[4.2]
2
+ def change
3
+ create_table :identities do |t|
4
+ t.string :name
5
+ t.string :email
6
+ t.string :password_digest
7
+ t.references :profile, index: true
8
+
9
+ t.timestamps null: false
10
+ end
11
+ add_index :identities, :name
12
+ add_index :identities, :email
13
+ end
14
+ end
@@ -1,13 +1,11 @@
1
1
  class CreateWithdraws < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :withdraws do |t|
4
- t.integer :basket_id
5
- t.integer :item_id
6
- t.integer :librarian_id
4
+ t.references :basket, index: true
5
+ t.references :item, index: true
6
+ t.references :librarian, index: true
7
7
 
8
8
  t.timestamps null: false
9
9
  end
10
- add_index :withdraws, :basket_id
11
- add_index :withdraws, :item_id
12
10
  end
13
11
  end
@@ -0,0 +1,6 @@
1
+ class AddProfileIdToAgent < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_column :agents, :profile_id, :integer
4
+ add_index :agents, :profile_id
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddProviderToIdentity < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_column :identities, :provider, :string
4
+ end
5
+ end
@@ -1,13 +1,18 @@
1
+ # This migration comes from enju_library_engine (originally 20151213070943)
1
2
  class AddTranslationTableToLibraryGroup < ActiveRecord::Migration[4.2]
2
3
  def up
3
- LibraryGroup.create_translation_table!({
4
- login_banner: :text
5
- }, {
6
- migrate_data: true
7
- })
4
+ if defined?(Globalize)
5
+ LibraryGroup.create_translation_table!({
6
+ login_banner: :text
7
+ }, {
8
+ migrate_data: true
9
+ })
10
+ end
8
11
  end
9
12
 
10
13
  def down
11
- LibraryGroup.drop_translation_table! migrate_data: true
14
+ if defined?(Globalize)
15
+ LibraryGroup.drop_translation_table! migrate_data: true
16
+ end
12
17
  end
13
18
  end
@@ -1,9 +1,22 @@
1
+ # This migration comes from enju_library_engine (originally 20151213072705)
1
2
  class AddFooterBannerToLibraryGroup < ActiveRecord::Migration[4.2]
2
3
  def up
3
- LibraryGroup.add_translation_fields! footer_banner: :text
4
+ if defined?(Globalize)
5
+ LibraryGroup.add_translation_fields! footer_banner: :text
6
+ end
7
+
8
+ if defined?(AwesomeHstoreTranslate)
9
+ add_column :library_groups, :footer_banner, :hstore
10
+ end
4
11
  end
5
12
 
6
13
  def down
7
- remove_column :library_group_translations, :footer_banner
14
+ if defined?(Globalize)
15
+ remove_column :library_group_translations, :footer_banner
16
+ end
17
+
18
+ if defined?(AwesomeHstoreTranslate)
19
+ remove_column :library_groups, :footer_banner
20
+ end
8
21
  end
9
22
  end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToImportRequestTransitions < ActiveRecord::Migration[4.2]
2
+ def up
3
+ add_column :import_request_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :import_request_transitions, :most_recent
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToResourceImportFileTransitions < ActiveRecord::Migration[4.2]
2
+ def up
3
+ add_column :resource_import_file_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :resource_import_file_transitions, :most_recent
8
+ end
9
+ end