summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-15 00:54:24 +0200
committerGitHub <noreply@github.com>2018-06-15 00:54:24 +0200
commit69e02e0576fc834de982ab6fa3d5b77ce7fe472a (patch)
treefd3b6d495c9869f5550cbccf60618d8e66b5ba14 /Bugzilla/Install
parent9af546bb69ad8d0d61d7575b284c28825a0056fe (diff)
downloadbugzilla-69e02e0576fc834de982ab6fa3d5b77ce7fe472a.tar.gz
bugzilla-69e02e0576fc834de982ab6fa3d5b77ce7fe472a.tar.xz
Bug 1468818 - Re-introduce is_markdown to the Bugzilla::Comment model
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index e6a7a3be0..1729a134b 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)' });