2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-06-20 18:41:08 +05:30
|
|
|
class AddBannerPhotoToConference < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
add_column :conferences, :banner_photo_file_name, :string
|
|
|
|
|
add_column :conferences, :banner_photo_content_type, :string
|
|
|
|
|
add_column :conferences, :banner_photo_file_size, :integer
|
|
|
|
|
add_column :conferences, :banner_photo_updated_at, :datetime
|
|
|
|
|
end
|
|
|
|
|
end
|