openstreetmap-website/db/migrate/036_add_visible_to_message.rb
Tom Hughes f3bf0c8b14 Add the ability for a recipient to (logically) delete a message from
their INBOX so they no longer see it.
2009-07-23 15:22:44 +00:00

9 lines
216 B
Ruby

class AddVisibleToMessage < ActiveRecord::Migration
def self.up
add_column :messages, :visible, :boolean, :default => true, :null => false
end
def self.down
remove_column :messages, :visible
end
end