view db/migrate/.svn/text-base/075_add_members_mail_notification.rb.svn-base @ 317:2c9d65eff252 live

Merge from branch "cannam-pre-20110113-merge"
author Chris Cannam
date Mon, 28 Mar 2011 18:08:24 +0100
parents 513646585e45
children
line wrap: on
line source
class AddMembersMailNotification < ActiveRecord::Migration
  def self.up
    add_column :members, :mail_notification, :boolean, :default => false, :null => false
  end

  def self.down
    remove_column :members, :mail_notification
  end
end