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.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/Rakefile +1 -1
- data/app/controllers/classification_types_controller.rb +1 -1
- data/app/controllers/classifications_controller.rb +1 -2
- data/app/controllers/subject_heading_types_controller.rb +1 -1
- data/app/controllers/subject_types_controller.rb +1 -1
- data/app/controllers/subjects_controller.rb +2 -3
- data/app/models/classification.rb +1 -1
- data/app/models/classification_type.rb +1 -1
- data/app/models/subject.rb +1 -1
- data/app/models/subject_heading_type.rb +1 -1
- data/app/models/subject_type.rb +1 -1
- data/app/views/classification_types/_form.html.erb +1 -1
- data/app/views/manifestations/_subject_facet.html.erb +1 -1
- data/app/views/subject_heading_types/_form.html.erb +1 -1
- data/app/views/subject_types/_form.html.erb +1 -1
- data/app/views/subject_types/show.html.erb +1 -1
- data/lib/enju_subject/version.rb +1 -1
- data/lib/generators/enju_subject/setup/setup_generator.rb +0 -1
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/config/application.rb +1 -1
- data/spec/dummy/db/migrate/059_create_libraries.rb +3 -5
- data/spec/dummy/db/migrate/069_create_shelves.rb +1 -2
- data/spec/dummy/db/migrate/080_create_library_groups.rb +1 -2
- data/spec/dummy/db/migrate/120_create_baskets.rb +1 -2
- data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +2 -5
- data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +1 -2
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -2
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +2 -2
- data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
- data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +3 -6
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +1 -1
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +2 -2
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -2
- data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +1 -1
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140821151023_create_colors.rb +1 -3
- data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +5 -0
- data/spec/dummy/db/migrate/20150421023923_create_identities.rb +14 -0
- data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +3 -5
- data/spec/dummy/db/migrate/20151125004028_add_profile_id_to_agent.rb +6 -0
- data/spec/dummy/db/migrate/20151126005552_add_provider_to_identity.rb +5 -0
- data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +11 -6
- data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +15 -2
- data/spec/dummy/db/migrate/20160801080612_add_most_recent_to_import_request_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160801080637_add_most_recent_to_resource_export_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb +6 -0
- data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
- data/spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20171119051258_set_not_null_to_manifestation_id_on_items.rb +5 -0
- data/spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb +5 -0
- data/spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb +5 -0
- data/spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
- data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
- data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +12 -0
- data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +12 -0
- data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +12 -0
- data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +12 -0
- data/spec/dummy/db/schema.rb +110 -13
- data/spec/fixtures/library_groups.yml +37 -19
- data/spec/lib/generators/enju_subject/setup/setup_generator_spec.rb +1 -0
- metadata +315 -213
- data/README.rdoc +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d32a20b9efe5acb58db6f8785349609f59bb626797cf54ca6dff99bb829b65b7
|
4
|
+
data.tar.gz: 524637ea07d613bd759aeda5d4f392fe515b8249b1adbe1af6ee6b6fe9913503
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 175f8b549efd88277a5d70489d74f73e1a993820b5897682ff5c09ddce6925c8ffb8b812da82e6a149773f778fbc5c49fad2b27a742a623e8f723c1e75eb6004
|
7
|
+
data.tar.gz: 43ab4857320b8a22667854dcae87ee05ccfe913226c3312324017db772968a5dbfaacfb0d90477f886c604e695e9a8a2ee71a9a61152cdf3275d9bc402a73916
|
data/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# EnjuSubject
|
2
|
+
[](https://travis-ci.com/next-l/enju_subject)
|
3
|
+
[](https://coveralls.io/github/next-l/enju_subject?branch=1.3)
|
4
|
+
[](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
@@ -62,7 +62,7 @@ class ClassificationTypesController < ApplicationController
|
|
62
62
|
end
|
63
63
|
|
64
64
|
respond_to do |format|
|
65
|
-
if @classification_type.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
|
data/app/models/subject.rb
CHANGED
data/app/models/subject_type.rb
CHANGED
@@ -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.
|
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)) -%>
|
@@ -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
|
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>
|
data/lib/enju_subject/version.rb
CHANGED
@@ -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
|
@@ -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.
|
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.
|
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.
|
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.
|
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.
|
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
|
-
|
7
|
-
t.
|
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.
|
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, :
|
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, :
|
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.
|
5
|
-
t.
|
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.
|
5
|
-
t.
|
6
|
-
t.
|
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,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.
|
5
|
-
t.
|
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.
|
5
|
-
t.
|
6
|
-
t.
|
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.
|
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.
|
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,14 +1,12 @@
|
|
1
1
|
class CreateColors < ActiveRecord::Migration[4.2]
|
2
2
|
def change
|
3
3
|
create_table :colors do |t|
|
4
|
-
t.
|
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,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.
|
5
|
-
t.
|
6
|
-
t.
|
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
|
@@ -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
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb
ADDED
@@ -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
|