1abaee04d8
- api to update name and email - api to change password - api to set profile pic - fixes update_attribute! deprecation warning - introducing active storage
5 lines
122 B
Ruby
5 lines
122 B
Ruby
class RemoveImageFromUser < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :users, :image, :string
|
|
end
|
|
end
|