Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150920161119_add_line_code_to_sent_notification.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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