summaryrefslogtreecommitdiff
path: root/db/migrate/20170720111708_add_lock_version_to_ci_stages.rb
blob: e1c4f0332864d3bf8211b0a2e3c21620bd87f173 (plain)
1
2
3
4
5
6
7
8
9
class AddLockVersionToCiStages < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_stages, :lock_version, :integer
  end
end