From 3776f86ebdfb6169a35c525ce6b8363eb0cabbe1 Mon Sep 17 00:00:00 2001 From: Simon Green Date: Thu, 27 Feb 2014 08:33:45 +1000 Subject: Bug 466178 - Add an INTEGER custom field type r=glob, a=justdave --- Bugzilla/Constants.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Constants.pm') diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 7154d4536..a296e2e25 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -111,8 +111,9 @@ use Memoize; FIELD_TYPE_BUG_ID FIELD_TYPE_BUG_URLS FIELD_TYPE_KEYWORDS + FIELD_TYPE_INTEGER FIELD_TYPE_HIGHEST_PLUS_ONE - + EMPTY_DATETIME_REGEX ABNORMAL_SELECTS @@ -398,9 +399,10 @@ use constant FIELD_TYPE_BUG_ID => 6; use constant FIELD_TYPE_BUG_URLS => 7; use constant FIELD_TYPE_KEYWORDS => 8; use constant FIELD_TYPE_DATE => 9; +use constant FIELD_TYPE_INTEGER => 10; # Add new field types above this line, and change the below value in the # obvious fashion -use constant FIELD_TYPE_HIGHEST_PLUS_ONE => 10; +use constant FIELD_TYPE_HIGHEST_PLUS_ONE => 11; use constant EMPTY_DATETIME_REGEX => qr/^[0\-:\sA-Za-z]+$/; -- cgit v1.2.3-24-g4f1b