Merge branch 'fix-remove-branch-name-migration' into 'master'

Fix migration that removes issues.branch_name

See merge request gitlab-org/gitlab-ce!15858
This commit is contained in:
Sean McGivern 2017-12-12 08:38:04 +00:00
commit 70b8aa8dbb
2 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class Issue < ActiveRecord::Base
include ThrottledTouch
include IgnorableColumn
ignore_column :assignee_id
ignore_column :assignee_id, :branch_name
DueDateStruct = Struct.new(:title, :name).freeze
NoDueDate = DueDateStruct.new('No Due Date', '0').freeze