summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-28 01:03:19 +0200
committerGitHub <noreply@github.com>2018-06-28 01:03:19 +0200
commit92404e600ecfb71af823470b83b594ce3ba88eac (patch)
tree216e2ecf24419e451dd76aae540e4dcdb7e14612 /Bugzilla/Install
parent52069375a263292354cdb1074585929b98be303c (diff)
downloadbugzilla-92404e600ecfb71af823470b83b594ce3ba88eac.tar.gz
bugzilla-92404e600ecfb71af823470b83b594ce3ba88eac.tar.xz
Revert "Bug 1471701 - Remove is_markdown (to be replaced by a new comment type)"
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index fe87342b1..d81bcfbdc 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -710,6 +710,11 @@ sub update_table_definitions {
# 2014-07-27 LpSolit@gmail.com - Bug 1044561
_fix_user_api_keys_indexes();
+
+ # 2018-06-14 dylan@mozilla.com - Bug 1468818
+ $dbh->bz_add_column('longdescs', 'is_markdown',
+ {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
+
# 2014-10-?? dkl@mozilla.com - Bug 1062940
$dbh->bz_alter_column('bugs', 'alias', { TYPE => 'varchar(40)' });
@@ -769,8 +774,6 @@ sub update_table_definitions {
$dbh->bz_add_index('profiles', 'profiles_realname_ft_idx',
{TYPE => 'FULLTEXT', FIELDS => ['realname']});
- $dbh->bz_drop_column('longdescs', 'is_markdown');
-
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################