aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/085_draft_profile_photo.rb
blob: c0b50748544d1cd5e2b2c48dc87dc54d51596e64 (plain)
1
2
3
4
5
6
7
8
9
class DraftProfilePhoto < ActiveRecord::Migration
    def self.up
        add_column :profile_photos, :draft, :boolean, :default => false, :null => false
    end

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