-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #567 from scientist-softserv/update-migrations-to-…
…reflect-iiif-print-updates 🐛 Update migrations to reflect IIIF Print and GoodJob
- Loading branch information
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
...igrate/20231128200116_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 |
---|---|---|
@@ -0,0 +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 | ||
end | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copy file to docker-compose.override.yml to override docker-compose.yml | ||
# Only use for local development | ||
version: '3.8' | ||
services: | ||
# Uncomment to allow for the use of a ruby debugger (byebug, pry, etc) in Docker. | ||
# See http://playbook-staging.notch8.com/en/devops/docker_debugger for more info. | ||
web: | ||
command: sh -l -c "bundle && tail -f /dev/null" | ||
# command: sh -l -c "bundle && bundle exec puma -v -b tcp://0.0.0.0:3000" | ||
worker: | ||
command: sh -l -c "bundle && tail -f /dev/null" | ||
# command: sh -l -c "bundle && bundle exec good_job" | ||
|