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

20160629025435_add_column_in_progress_merge_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: 7c5f76572ef80e92b6b44f360f10430972396b9d (plain)
1
2
3
4
5
6
7
8
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddColumnInProgressMergeCommitShaToMergeRequests < ActiveRecord::Migration
  def change
    add_column :merge_requests, :in_progress_merge_commit_sha, :string
  end
end