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

20171230123729_add_rebase_commit_sha_to_merge_requests.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce156fa92e493c99ec02392781b80d2e80ec550 (plain)
1
2
3
4
5
6
7
class AddRebaseCommitShaToMergeRequests < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :merge_requests, :rebase_commit_sha, :string
  end
end