Add a picture format for conference tickets

This commit is contained in:
James Mason 2017-11-30 10:37:20 -08:00
parent 364be55412
commit e01d849374
4 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,9 @@
class RebuildConferencePictures < ActiveRecord::Migration
def up
Conference.all.each do |conference|
conference.picture.recreate_versions!
end
end
def down; end
end