summaryrefslogtreecommitdiff
path: root/app/models/label.rb
diff options
context:
space:
mode:
authorTap <visibletrap@gmail.com>2016-02-17 21:52:12 +0800
committerTap <visibletrap@gmail.com>2016-02-17 21:52:12 +0800
commit2e81b1558bb02da5eacd24484a665a48e8a1cece (patch)
tree9843854846e2616075d7dbcaf0ca1527cb7de9a4 /app/models/label.rb
parent943bed68bc42d02246ddea63a25432d3aba709e7 (diff)
downloadgitlab-ce-2e81b1558bb02da5eacd24484a665a48e8a1cece.tar.gz
Label description and Label row
- Add label description - Show label row when filtering issues or merge requests by label
Diffstat (limited to 'app/models/label.rb')
-rw-r--r--app/models/label.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/app/models/label.rb b/app/models/label.rb
index 220da10a6ab..2257a69002e 100644
--- a/app/models/label.rb
+++ b/app/models/label.rb
@@ -2,13 +2,14 @@
#
# Table name: labels
#
-# id :integer not null, primary key
-# title :string(255)
-# color :string(255)
-# project_id :integer
-# created_at :datetime
-# updated_at :datetime
-# template :boolean default(FALSE)
+# id :integer not null, primary key
+# title :string(255)
+# color :string(255)
+# project_id :integer
+# created_at :datetime
+# updated_at :datetime
+# template :boolean default(FALSE)
+# description :string(255)
#
class Label < ActiveRecord::Base