enju_subject 0.0.15 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/classification_types/index.html.erb +1 -1
- data/app/views/classifications/_index.html.erb +1 -1
- data/app/views/classifications/_index_subject.html.erb +1 -1
- data/app/views/subject_has_classifications/index.html.erb +1 -1
- data/app/views/subject_heading_type_has_subjects/index.html.erb +1 -1
- data/app/views/subject_heading_types/index.html.erb +1 -1
- data/app/views/subject_types/index.html.erb +1 -1
- data/app/views/subjects/_index.html.erb +1 -1
- data/app/views/subjects/_index_classification.html.erb +1 -1
- data/app/views/subjects/_index_work.html.erb +1 -1
- data/app/views/subjects/show.html.erb +1 -1
- data/app/views/work_has_subjects/index.html.erb +1 -1
- data/lib/enju_subject/engine.rb +1 -7
- data/lib/enju_subject/expire_editable_fragment.rb +4 -2
- data/lib/enju_subject/version.rb +1 -1
- data/lib/enju_subject.rb +0 -2
- data/spec/dummy/app/models/role.rb +40 -1
- data/spec/dummy/app/models/user.rb +29 -0
- data/spec/dummy/config/application.rb +2 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/001_create_patrons.rb +53 -0
- data/spec/dummy/db/migrate/005_create_manifestations.rb +56 -0
- data/spec/dummy/db/migrate/006_create_items.rb +28 -0
- data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
- data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
- data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
- data/spec/dummy/db/migrate/073_create_carrier_types.rb +1 -5
- data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
- data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
- data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
- data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
- data/spec/dummy/db/migrate/20080905191442_create_patron_types.rb +1 -5
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
- data/spec/dummy/db/migrate/20081028083142_create_patron_import_files.rb +22 -0
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +22 -0
- data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
- data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
- data/spec/dummy/db/migrate/20090812151902_create_patron_relationship_types.rb +12 -0
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
- data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
- data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +15 -0
- data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
- data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
- data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
- data/spec/dummy/db/migrate/20100606073747_create_patron_relationships.rb +13 -0
- data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
- data/spec/dummy/db/migrate/20100814091104_add_position_to_patron_relationship.rb +11 -0
- data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
- data/spec/dummy/db/migrate/20100925074559_create_patron_import_results.rb +12 -0
- data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
- data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
- data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +11 -0
- data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +9 -0
- data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
- data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +9 -0
- data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
- data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
- data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
- data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
- data/spec/dummy/db/migrate/20110820131417_create_series_has_manifestations.rb +13 -0
- data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +13 -0
- data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
- data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
- data/spec/dummy/db/migrate/20110918161853_rename_series_statement_manifestation_id_to_root_manifestation_id.rb +13 -0
- data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
- data/spec/dummy/db/migrate/20111009183423_add_ndc_to_manifestation.rb +9 -0
- data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
- data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +31 -10
- data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +9 -0
- data/spec/dummy/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +9 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +5 -0
- data/spec/dummy/db/schema.rb +563 -50
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/data/test/index/segments_1 +0 -0
- data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
- data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
- data/spec/requests/subjects_spec.rb +0 -1
- metadata +185 -62
- data/app/views/classifications/classification_types/_form.html.erb +0 -19
- data/app/views/classifications/classification_types/edit.html.erb +0 -13
- data/app/views/classifications/classification_types/index.html.erb +0 -45
- data/app/views/classifications/classification_types/new.html.erb +0 -12
- data/app/views/classifications/classification_types/show.html.erb +0 -30
- data/spec/cassette_library/enju_subject/classification_index.yml +0 -30
- data/spec/cassette_library/enju_subject/create.yml +0 -49
- data/spec/cassette_library/enju_subject/create_subject.yml +0 -82
- data/spec/cassette_library/enju_subject/delete.yml +0 -72
- data/spec/cassette_library/enju_subject/edit.yml +0 -49
- data/spec/cassette_library/enju_subject/index.yml +0 -82
- data/spec/cassette_library/enju_subject/show.yml +0 -72
- data/spec/cassette_library/enju_subject/update.yml +0 -72
- data/spec/dummy/app/models/carrier_type.rb +0 -4
- data/spec/dummy/app/models/manifestation.rb +0 -13
- data/spec/dummy/db/migrate/20111201115353_create_manifestations.rb +0 -17
- data/spec/dummy/db/migrate/20111201115421_create_patrons.rb +0 -14
- data/spec/dummy/db/migrate/20111201121636_create_languages.rb +0 -16
- data/spec/dummy/lib/localized_name.rb +0 -13
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D47/9C0/sprockets%2Fed08c2088e78d59a4fc4ea21b625784b +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D63/4E0/sprockets%2F0d39549b9e061d4b82c2ba3ac7ec5c31 +0 -0
- data/spec/dummy/tmp/cache/assets/DAD/4B0/sprockets%2Fb5993ad241d17bf516c64e9fcd9f68bb +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/DFD/1C0/sprockets%2Fbba00f45f706fc39c4fbfc79305c9afb +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
class CreateResourceImportFiles < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :resource_import_files do |t|
|
4
|
+
t.integer :parent_id
|
5
|
+
t.string :content_type
|
6
|
+
t.integer :size
|
7
|
+
t.integer :user_id
|
8
|
+
t.text :note
|
9
|
+
t.datetime :imported_at
|
10
|
+
t.string :state
|
11
|
+
t.string :resource_import_file_name
|
12
|
+
t.string :resource_import_content_type
|
13
|
+
t.integer :resource_import_file_size
|
14
|
+
t.datetime :resource_import_updated_at
|
15
|
+
|
16
|
+
t.timestamps
|
17
|
+
end
|
18
|
+
add_index :resource_import_files, :parent_id
|
19
|
+
add_index :resource_import_files, :user_id
|
20
|
+
add_index :resource_import_files, :state
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class AddAttachmentsPictureToPictureFile < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :picture_files, :picture_file_name, :string
|
4
|
+
add_column :picture_files, :picture_content_type, :string
|
5
|
+
add_column :picture_files, :picture_file_size, :integer
|
6
|
+
add_column :picture_files, :picture_updated_at, :datetime
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.down
|
10
|
+
remove_column :picture_files, :picture_file_name
|
11
|
+
remove_column :picture_files, :picture_content_type
|
12
|
+
remove_column :picture_files, :picture_file_size
|
13
|
+
remove_column :picture_files, :picture_updated_at
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class AddAttachmentsAttachmentToManifestation < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :manifestations, :attachment_file_name, :string
|
4
|
+
add_column :manifestations, :attachment_content_type, :string
|
5
|
+
add_column :manifestations, :attachment_file_size, :integer
|
6
|
+
add_column :manifestations, :attachment_updated_at, :datetime
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.down
|
10
|
+
remove_column :manifestations, :attachment_file_name
|
11
|
+
remove_column :manifestations, :attachment_content_type
|
12
|
+
remove_column :manifestations, :attachment_file_size
|
13
|
+
remove_column :manifestations, :attachment_updated_at
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
class AddDcndlSchema < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :manifestations, :title_alternative_transcription, :text
|
4
|
+
add_column :patrons, :full_name_alternative_transcription, :text
|
5
|
+
add_column :manifestations, :description, :text
|
6
|
+
add_column :manifestations, :abstract, :text
|
7
|
+
add_column :manifestations, :available_at, :timestamp
|
8
|
+
add_column :manifestations, :valid_until, :timestamp
|
9
|
+
add_column :manifestations, :date_submitted, :timestamp
|
10
|
+
add_column :manifestations, :date_accepted, :timestamp
|
11
|
+
add_column :manifestations, :date_caputured, :timestamp
|
12
|
+
rename_column :manifestations, :copyright_date, :date_copyrighted
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.down
|
16
|
+
remove_column :manifestations, :title_alternative_transcription
|
17
|
+
remove_column :patrons, :full_name_alternative_transcription
|
18
|
+
remove_column :manifestations, :description
|
19
|
+
remove_column :manifestations, :abstract
|
20
|
+
remove_column :manifestations, :available_at
|
21
|
+
remove_column :manifestations, :valid_until
|
22
|
+
remove_column :manifestations, :date_submitted
|
23
|
+
remove_column :manifestations, :date_accepted
|
24
|
+
remove_column :manifestations, :date_caputured
|
25
|
+
rename_column :manifestations, :date_copyrighted, :copyright_date
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
class CreateVersions < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :versions do |t|
|
4
|
+
t.string :item_type, :null => false
|
5
|
+
t.integer :item_id, :null => false
|
6
|
+
t.string :event, :null => false
|
7
|
+
t.string :whodunnit
|
8
|
+
t.text :object
|
9
|
+
t.datetime :created_at
|
10
|
+
end
|
11
|
+
add_index :versions, [:item_type, :item_id]
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.down
|
15
|
+
remove_index :versions, [:item_type, :item_id]
|
16
|
+
drop_table :versions
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreateSeriesStatements < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :series_statements do |t|
|
4
|
+
t.text :title
|
5
|
+
t.text :numbering
|
6
|
+
t.text :title_subseries
|
7
|
+
t.text :numbering_subseries
|
8
|
+
t.integer :position
|
9
|
+
|
10
|
+
t.timestamps
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class CreateImportRequests < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :import_requests do |t|
|
4
|
+
t.string :isbn
|
5
|
+
t.string :state
|
6
|
+
t.integer :manifestation_id
|
7
|
+
t.integer :user_id
|
8
|
+
|
9
|
+
t.timestamps
|
10
|
+
end
|
11
|
+
add_index :import_requests, :isbn
|
12
|
+
add_index :import_requests, :manifestation_id
|
13
|
+
add_index :import_requests, :user_id
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class RenameSeriesStatementTitleToOriginalTitle < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
rename_column :series_statements, :title, :original_title
|
4
|
+
add_column :series_statements, :title_transcription, :text
|
5
|
+
add_column :series_statements, :title_alternative, :text
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.down
|
9
|
+
rename_column :series_statements, :original_title, :title
|
10
|
+
remove_column :series_statements, :title_transcription
|
11
|
+
remove_column :series_statements, :title_alternative
|
12
|
+
end
|
13
|
+
end
|
data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
class AddSeriesStatementIdentifierToSeriesStatement < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :series_statements, :series_statement_identifier, :string
|
4
|
+
add_index :series_statements, :series_statement_identifier
|
5
|
+
end
|
6
|
+
|
7
|
+
def self.down
|
8
|
+
remove_column :series_statements, :series_statement_identifier
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreateManifestationRelationships < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :manifestation_relationships do |t|
|
4
|
+
t.integer :parent_id
|
5
|
+
t.integer :child_id
|
6
|
+
t.integer :manifestation_relationship_type_id
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
add_index :manifestation_relationships, :parent_id
|
11
|
+
add_index :manifestation_relationships, :child_id
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreatePatronRelationships < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :patron_relationships do |t|
|
4
|
+
t.integer :parent_id
|
5
|
+
t.integer :child_id
|
6
|
+
t.integer :patron_relationship_type_id
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
add_index :patron_relationships, :parent_id
|
11
|
+
add_index :patron_relationships, :child_id
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class CreateManifestationRelationshipTypes < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :manifestation_relationship_types do |t|
|
4
|
+
t.string :name, :null => false
|
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,11 @@
|
|
1
|
+
class AddPositionToPatronRelationship < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :manifestation_relationships, :position, :integer
|
4
|
+
add_column :patron_relationships, :position, :integer
|
5
|
+
end
|
6
|
+
|
7
|
+
def self.down
|
8
|
+
remove_column :patron_relationships, :position
|
9
|
+
remove_column :manifestation_relationships, :position
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class CreateResourceImportResults < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :resource_import_results do |t|
|
4
|
+
t.integer :resource_import_file_id
|
5
|
+
t.integer :manifestation_id
|
6
|
+
t.integer :item_id
|
7
|
+
t.text :body
|
8
|
+
|
9
|
+
t.timestamps
|
10
|
+
end
|
11
|
+
add_index :resource_import_results, :resource_import_file_id
|
12
|
+
add_index :resource_import_results, :manifestation_id
|
13
|
+
add_index :resource_import_results, :item_id
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class AddBirthDateAndDeathDateToPatron < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_column :patrons, :birth_date, :string
|
4
|
+
add_column :patrons, :death_date, :string
|
5
|
+
end
|
6
|
+
|
7
|
+
def self.down
|
8
|
+
remove_column :patrons, :death_date
|
9
|
+
remove_column :patrons, :birth_date
|
10
|
+
end
|
11
|
+
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 CreateSeriesHasManifestations < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :series_has_manifestations do |t|
|
4
|
+
t.integer :series_statement_id
|
5
|
+
t.integer :manifestation_id
|
6
|
+
t.integer :position
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
add_index :series_has_manifestations, :series_statement_id
|
11
|
+
add_index :series_has_manifestations, :manifestation_id
|
12
|
+
end
|
13
|
+
end
|
data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
class RenameManifestationNumberListToNumberString < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
rename_column :manifestations, :volume_number_list, :volume_number_string
|
4
|
+
rename_column :manifestations, :issue_number_list, :issue_number_string
|
5
|
+
rename_column :manifestations, :serial_number_list, :serial_number_string
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.down
|
9
|
+
rename_column :manifestations, :serial_number_string, :serial_number_list
|
10
|
+
rename_column :manifestations, :issue_number_string, :issue_number_list
|
11
|
+
rename_column :manifestations, :volume_number_string, :volume_number_list
|
12
|
+
end
|
13
|
+
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,13 @@
|
|
1
|
+
class RenameSeriesStatementManifestationIdToRootManifestationId < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
remove_index :series_statements, :series_statement_identifier
|
4
|
+
rename_column :series_statements, :manifestation_id, :root_manifestation_id
|
5
|
+
add_index :series_statements, :series_statement_identifier
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.down
|
9
|
+
remove_index :series_statements, :series_statement_identifier
|
10
|
+
rename_column :series_statements, :root_manifestation_id, :manifestation_id
|
11
|
+
add_index :series_statements, :series_statement_identifier
|
12
|
+
end
|
13
|
+
end
|
@@ -1,19 +1,40 @@
|
|
1
1
|
class AddDeviseToUsers < ActiveRecord::Migration
|
2
2
|
def self.up
|
3
3
|
change_table(:users) do |t|
|
4
|
-
|
5
|
-
t.
|
6
|
-
t.
|
7
|
-
t.trackable
|
4
|
+
## Database authenticatable
|
5
|
+
t.string :email, :null => false, :default => ""
|
6
|
+
t.string :encrypted_password, :null => false, :default => ""
|
8
7
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
# t.token_authenticatable
|
8
|
+
## Recoverable
|
9
|
+
t.string :reset_password_token
|
10
|
+
t.datetime :reset_password_sent_at
|
13
11
|
|
12
|
+
## Rememberable
|
13
|
+
t.datetime :remember_created_at
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
## Trackable
|
16
|
+
t.integer :sign_in_count, :default => 0
|
17
|
+
t.datetime :current_sign_in_at
|
18
|
+
t.datetime :last_sign_in_at
|
19
|
+
t.string :current_sign_in_ip
|
20
|
+
t.string :last_sign_in_ip
|
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
|
17
38
|
end
|
18
39
|
|
19
40
|
add_index :users, :email #, :unique => true
|