2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2013-01-17 15:56:56 +01:00
|
|
|
class AddLogoToConferencesTable < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
add_column :conferences, :logo_file_name, :string
|
|
|
|
|
add_column :conferences, :logo_content_type, :string
|
|
|
|
|
add_column :conferences, :logo_file_size, :integer
|
|
|
|
|
add_column :conferences, :logo_updated_at, :datetime
|
|
|
|
|
end
|
|
|
|
|
end
|