2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-06-13 00:20:18 +05:30
|
|
|
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
|