aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/012_add_sent_outgoing_message.rb
blob: 8b3059347a2da06aa9c3914b37f3b9eab0c307d6 (plain)
1
2
3
4
5
6
7
8
class AddSentOutgoingMessage < ActiveRecord::Migration
  def self.up
      add_column :outgoing_messages, :sent_at, :datetime
  end

  def self.down
  end
end