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

20170720111708_add_lock_version_to_ci_stages.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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