diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2017-12-11 18:06:53 +0100 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2017-12-11 18:06:53 +0100 |
commit | d47bc70c102147ac6c3c6909fb903e1e962b0de7 (patch) | |
tree | 39e86e1043037887de8c256519ee124bb995a7d2 /app/models/issue.rb | |
parent | bd8b6518855bd9768ca5d245467b5ff0934e40b6 (diff) | |
download | gitlab-ce-d47bc70c102147ac6c3c6909fb903e1e962b0de7.tar.gz |
Fix migration that removes issues.branch_namefix-remove-branch-name-migration
Diffstat (limited to 'app/models/issue.rb')
-rw-r--r-- | app/models/issue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb index bbda848c39d..dc64888b6fc 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -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 |