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

20151002122929_add_ref_and_tag_to_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c0fcf6c45d3b4602e3b2477bb8f10cc610827f4 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddRefAndTagToBuilds < ActiveRecord::Migration
  def change
    add_column :ci_builds, :tag, :boolean
    add_column :ci_builds, :ref, :string
  end
end