summaryrefslogtreecommitdiff
path: root/db/migrate/20170708011014_remove_skype_visibility_from_users.rb
blob: 92a9482b4f3e6500dab1ef88f5a0206bfe87e3fa (plain)
1
2
3
4
5
6
class RemoveSkypeVisibilityFromUsers < ActiveRecord::Migration
  def change
    remove_column :users, :skype_public
    User.update_all skype: nil
  end
end