Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Update bulkrax for amigos (WIP) #2350

Draft
wants to merge 1 commit into
base: update-hyrax-to-flexible_double_combo
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ GIT

GIT
remote: https://github.com/samvera/bulkrax.git
revision: 189b95c2fa463918be3a42c8a66539c0ab0983f0
revision: 92d6042dd54ba104cc35f8ade63bfd6cee708d11
branch: main
specs:
bulkrax (8.1.0)
bulkrax (8.2.0)
bagit (~> 0.4.6)
coderay
denormalize_fields
Expand Down
5 changes: 4 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2024_08_20_200440) do
ActiveRecord::Schema.define(version: 2024_09_16_182823) do

# These are extensions that must be enabled in order to support this database
enable_extension "hstore"
Expand Down Expand Up @@ -151,6 +151,8 @@
t.datetime "last_error_at"
t.datetime "last_succeeded_at"
t.string "status_message", default: "Pending"
t.datetime "last_imported_at"
t.datetime "next_import_at"
t.index ["user_id"], name: "index_bulkrax_importers_on_user_id"
end

Expand All @@ -161,6 +163,7 @@
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "order", default: 0
t.string "status_message", default: "Pending"
t.index ["child_id"], name: "index_bulkrax_pending_relationships_on_child_id"
t.index ["importer_run_id"], name: "index_bulkrax_pending_relationships_on_importer_run_id"
t.index ["parent_id"], name: "index_bulkrax_pending_relationships_on_parent_id"
Expand Down
Loading