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

20130909132950_add_description_to_merge_request.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbac50c8216096de8f5769222d57c1fc476e109f (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDescriptionToMergeRequest < ActiveRecord::Migration
  def change
    add_column :merge_requests, :description, :text, null: true
  end
end