Upstream sync
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class MigrateMaterialPhotosToFiles < ActiveRecord::DataMigration
|
||||
def up
|
||||
photos = ActiveStorage::Attachment.where(name: "photos", record_type: "MaterialRelease")
|
||||
|
||||
photos.each do |photo|
|
||||
photo.update(name: "files")
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user