Add logo to conference page

This commit is contained in:
Matt Barringer 2013-01-17 15:56:56 +01:00
parent caa0dec6c4
commit 1d7670d74e
12 changed files with 61 additions and 18 deletions

View file

@ -0,0 +1,8 @@
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