Handle not ready repos
[gitorious.git] / db / migrate / 20091217110558_add_mail_flag_to_favorites.rb
blob31489447cbfb337b33b80ebd315c6ac652e50992
1 class AddMailFlagToFavorites < ActiveRecord::Migration
2   def self.up
3     add_column :favorites, :notify_by_email, :boolean, :default => false
4   end
6   def self.down
7     remove_column :favorites, :notify_by_email
8   end
9 end