From 9bf73842ac7d7e810e23dd342afe9caead3e7584 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Thu, 15 May 2008 21:32:05 +0000 Subject: [PATCH] Make sure rev_deleted is of type smallint, may fix bug 14138 --- maintenance/updaters.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index 190b29a88e..32b29d51f6 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -1485,6 +1485,7 @@ function do_postgres_updates() { array("recentchanges","rc_new", "smallint", "rc_new::smallint DEFAULT 0"), array("recentchanges","rc_type", "smallint", "rc_type::smallint DEFAULT 0"), array("recentchanges","rc_patrolled", "smallint", "rc_patrolled::smallint DEFAULT 0"), + array("revision", "rev_deleted", "smallint", "rev_deleted::smallint DEFAULT 0"), array("revision", "rev_minor_edit", "smallint", "rev_minor_edit::smallint DEFAULT 0"), array("templatelinks","tl_namespace", "smallint", "tl_namespace::smallint"), array("user_newtalk", "user_ip", "text", "host(user_ip)"), -- 2.20.1