summaryrefslogtreecommitdiff
path: root/db/migrate/20150920161119_add_line_code_to_sent_notification.rb
blob: 1bcb06e4bda3367fa18c888b3e8b466e0f775278 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLineCodeToSentNotification < ActiveRecord::Migration
  def change
    add_column :sent_notifications, :line_code, :string
  end
end