Added sponsor description and email to conference

This commit is contained in:
Gopesh Tulsyan 2014-06-13 00:44:21 +05:30
parent f8ba5db48e
commit 2c27119e8e
5 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddSponsorDescriptionToConference < ActiveRecord::Migration
def change
add_column :conferences, :sponsor_description, :text
end
end

View file

@ -0,0 +1,5 @@
class AddSponsorEmailToConference < ActiveRecord::Migration
def change
add_column :conferences, :sponsor_email, :string
end
end

View file

@ -84,6 +84,8 @@ ActiveRecord::Schema.define(version: 20140612181230) do
t.string "twitter_url"
t.string "facebook_url"
t.string "google_url"
t.text "sponsor_description"
t.string "sponsor_email"
end
create_table "conferences_questions", id: false, force: true do |t|