Add social url to conference

This commit is contained in:
Gopesh Tulsyan 2014-06-13 00:20:18 +05:30
parent 4e7dd5a8a7
commit 6d2576421b
4 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,7 @@
class AddSocialUrlsToConference < ActiveRecord::Migration
def change
add_column :conferences, :twitter_url, :string
add_column :conferences, :facebook_url, :string
add_column :conferences, :google_url, :string
end
end