debian-mirror-gitlab/db/migrate/20151002112914_add_stage_idx_to_builds.rb
2016-06-16 23:09:34 +05:30

7 lines
145 B
Ruby

# rubocop:disable all
class AddStageIdxToBuilds < ActiveRecord::Migration
def change
add_column :ci_builds, :stage_idx, :integer
end
end