summaryrefslogtreecommitdiff
path: root/db/migrate/20151002122929_add_ref_and_tag_to_builds.rb
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