Social media component

This commit is contained in:
Gopesh Tulsyan 2014-06-02 17:44:43 +05:30
parent 069cc0eb4c
commit 59d1e2c723
21 changed files with 87 additions and 11 deletions

View file

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

View file

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

View file

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