removed skype_public column from users

This commit is contained in:
MrYummy
2017-07-08 03:23:09 +02:00
parent 2819989b72
commit 767084cc2f
5 changed files with 44 additions and 48 deletions

View File

@@ -0,0 +1,6 @@
class RemoveSkypeVisibilityFromUsers < ActiveRecord::Migration
def change
remove_column :users, :skype_public
User.update_all skype: nil
end
end