diff options
author | francis <francis> | 2009-08-05 15:53:19 +0000 |
---|---|---|
committer | francis <francis> | 2009-08-05 15:53:19 +0000 |
commit | 9d3f7b1d205e36768e0910d4748ee913cb8df60f (patch) | |
tree | 0f89f941573eede7ffb30e9e7a84dc98d1e48fa6 | |
parent | e718a8675836b4b83204eeef8df74d64f03bcf95 (diff) |
This used the wrong command name.
-rw-r--r-- | db/migrate/025_add_followup_to_outgoing_message.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/025_add_followup_to_outgoing_message.rb b/db/migrate/025_add_followup_to_outgoing_message.rb index 10fc7adcb..d3bd7444c 100644 --- a/db/migrate/025_add_followup_to_outgoing_message.rb +++ b/db/migrate/025_add_followup_to_outgoing_message.rb @@ -4,6 +4,6 @@ class AddFollowupToOutgoingMessage < ActiveRecord::Migration end def self.down - drop_column :outgoing_messages, :incoming_message_followup_id + remove_column :outgoing_messages, :incoming_message_followup_id end end |