gitlab-org--gitlab-foss/db/migrate/20130909132950_add_descript...

7 lines
170 B
Ruby
Raw Normal View History

# rubocop:disable all
2013-09-09 13:32:43 +00:00
class AddDescriptionToMergeRequest < ActiveRecord::Migration
def change
add_column :merge_requests, :description, :text, null: true
end
end