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: e3d2ac1cea5cc43e34d52e07a1a055b5dbc20693 (plain)
1
2
3
4
5
6
class AddRefAndTagToBuilds < ActiveRecord::Migration
  def change
    add_column :ci_builds, :tag, :boolean
    add_column :ci_builds, :ref, :string
  end
end