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

20170329095325_add_ref_to_triggers.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db09b36db1713a135f1d27a2dd83facf3ce8955f (plain)
1
2
3
4
5
6
7
8
9
class AddRefToTriggers < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_triggers, :ref, :string
  end
end