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

20151002112914_add_stage_idx_to_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f73df9dc284aa94b6e2db67b4783a42899a6ca98 (plain)
1
2
3
4
5
class AddStageIdxToBuilds < ActiveRecord::Migration[4.2]
  def change
    add_column :ci_builds, :stage_idx, :integer
  end
end