osem-fcy/db/migrate/20140620130306_add_banner_photo_to_conference.rb
2014-06-20 21:50:48 +05:30

8 lines
337 B
Ruby

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