Add ID/URI to collection items (#37842)

This commit is contained in:
David Roetzel
2026-02-12 16:31:45 +01:00
committed by GitHub
parent db64ae368f
commit f57167c61a
15 changed files with 222 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddUriToCollectionItems < ActiveRecord::Migration[8.0]
def change
add_column :collection_items, :uri, :string
end
end