aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/084_alter_profile_photo.rb
blob: d2717b0479035c396e5b51ff6c1b24c1827982ef (plain)
1
2
3
4
5
6
7
8
9
class AlterProfilePhoto < ActiveRecord::Migration
    def self.up
        remove_column :users, :profile_photo_id
    end

    def self.down
        raise "No reverse migration"
    end
end