2020-03-24 16:45:27 +01:00
|
|
|
# frozen_string_literal:true
|
|
|
|
|
|
|
|
class AddSocialsToProfile < ActiveRecord::Migration[4.2]
|
2016-05-26 12:05:28 +02:00
|
|
|
def change
|
|
|
|
add_column :profiles, :pinterest, :string
|
|
|
|
add_column :profiles, :lastfm, :string
|
|
|
|
add_column :profiles, :flickr, :string
|
|
|
|
end
|
|
|
|
end
|