-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy of PR to see if the pipeline will behave differently. ref: - #2187
- Loading branch information
1 parent
8540860
commit 060e76a
Showing
5 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...igrate/20240214005253_add_model_details_to_iiif_print_pending_relationships.iiif_print.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# This migration comes from iiif_print (originally 20231110163052) | ||
class AddModelDetailsToIiifPrintPendingRelationships < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :iiif_print_pending_relationships, :parent_model, :string | ||
add_column :iiif_print_pending_relationships, :child_model, :string | ||
add_column :iiif_print_pending_relationships, :file_id, :string | ||
add_column :iiif_print_pending_relationships, :parent_model, :string unless column_exists?(:iif_print_pending_relationships, :parent_model) | ||
add_column :iiif_print_pending_relationships, :child_model, :string unless column_exists?(:iif_print_pending_relationships, :child_model) | ||
add_column :iiif_print_pending_relationships, :file_id, :string unless column_exists?(:iif_print_pending_relationships, :file_id) | ||
end | ||
end |