9 lines
186 B
Ruby
9 lines
186 B
Ruby
class RebuildConferencePictures < ActiveRecord::Migration
|
|
def up
|
|
Conference.all.each do |conference|
|
|
conference.picture.recreate_versions!
|
|
end
|
|
end
|
|
|
|
def down; end
|
|
end
|