summaryrefslogtreecommitdiff
path: root/db/migrate/20151002112914_add_stage_idx_to_builds.rb
blob: 4297ba0e7c81f4ca1d4718849fdc972625d3716e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStageIdxToBuilds < ActiveRecord::Migration
  def change
    add_column :ci_builds, :stage_idx, :integer
  end
end