blob: d83ba8dd0096a5425d73a5172e691d3feb403613 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|