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

  def self.down
  end
end