Chatwoot/db/migrate/20191209202758_remove_image_from_user.rb
Sojan Jose 1abaee04d8 Feature: Profile API [#238] (#354)
- api to update name and email
- api to change password
- api to  set profile pic
- fixes update_attribute! deprecation warning
- introducing active storage
2019-12-10 10:29:35 +05:30

5 lines
122 B
Ruby

class RemoveImageFromUser < ActiveRecord::Migration[6.0]
def change
remove_column :users, :image, :string
end
end