diff options
author | 2014-11-10 16:03:49 +0000 | |
---|---|---|
committer | 2014-11-10 16:03:49 +0000 | |
commit | 0d7b9c62b132c945114de061eb3d783fd4344e0e (patch) | |
tree | ffe23d959ea6d041c066b7c0aeb09c444d7ddd84 | |
parent | Bug 1091584: Typo in users/confirm-delete.html.tmpl (diff) | |
download | bugzilla-0d7b9c62b132c945114de061eb3d783fd4344e0e.tar.gz bugzilla-0d7b9c62b132c945114de061eb3d783fd4344e0e.tar.bz2 bugzilla-0d7b9c62b132c945114de061eb3d783fd4344e0e.zip |
Bug 1093928: Remove the longdescs.is_markdown DB column
r=LpSolit,a=glob
-rw-r--r-- | Bugzilla/Install/DB.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 8ffde11fd..96f14ec0f 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -726,6 +726,9 @@ sub update_table_definitions { # 2014-08-11 sgreen@redhat.com - Bug 1012506 _update_alias(); + # 2014-11-10 dkl@mozilla.com - Bug 1093928 + $dbh->bz_drop_column('longdescs', 'is_markdown'); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ |