blob: 8e230706034df6a0232ad4d92d6cfc56a22e03ab (
plain)
1
2
3
4
5
6
7
8
9
|
class RemoveIsBounce < ActiveRecord::Migration
def self.up
remove_column :incoming_messages, :is_bounce
end
def self.down
add_column :incoming_messages, :is_bounce, :boolean, :default => false
end
end
|