From 6061d1db2c2ccebd0c36c8670c2d31e2fe9a28d6 Mon Sep 17 00:00:00 2001 From: Leon Weber Date: Thu, 14 Dec 2006 15:34:56 +0000 Subject: [PATCH] * Fixed the default for recentchanges.rc_*_len to NULL on postgre as it should be --- maintenance/postgres/tables.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index bf0328b0f6..00d8259a22 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -312,8 +312,8 @@ CREATE TABLE recentchanges ( rc_moved_to_title TEXT, rc_patrolled CHAR NOT NULL DEFAULT '0', rc_ip CIDR, - rc_old_len INTEGER DEFAULT '0', - rc_new_len INTEGER DEFAULT '0' + rc_old_len INTEGER, + rc_new_len INTEGER ); CREATE INDEX rc_timestamp ON recentchanges (rc_timestamp); CREATE INDEX rc_namespace_title ON recentchanges (rc_namespace, rc_title); -- 2.20.1