mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
8 lines
278 B
Ruby
8 lines
278 B
Ruby
class AddPhotoToVenue < ActiveRecord::Migration
|
|
def change
|
|
add_column :venues, :photo_file_name, :string
|
|
add_column :venues, :photo_content_type, :string
|
|
add_column :venues, :photo_file_size, :integer
|
|
add_column :venues, :photo_updated_at, :datetime
|
|
end
|
|
end
|