From: Greg Sabino Mullane Date: Thu, 15 May 2008 21:32:05 +0000 (+0000) Subject: Make sure rev_deleted is of type smallint, may fix bug 14138 X-Git-Tag: 1.31.0-rc.0~47602 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=9bf73842ac7d7e810e23dd342afe9caead3e7584;p=lhc%2Fweb%2Fwiklou.git Make sure rev_deleted is of type smallint, may fix bug 14138 --- 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)"),