From 617466b3ac7d143ed275df35dc7b6c1c92b0d7d1 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Thu, 17 Jun 2004 09:06:22 +0000 Subject: [PATCH] alter table statement for rc_ip --- maintenance/archives/patch-rc_ip.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 maintenance/archives/patch-rc_ip.sql diff --git a/maintenance/archives/patch-rc_ip.sql b/maintenance/archives/patch-rc_ip.sql new file mode 100644 index 0000000000..6106d93380 --- /dev/null +++ b/maintenance/archives/patch-rc_ip.sql @@ -0,0 +1,7 @@ +-- Adding the rc_ip field for logging of IP addresses in recentchanges + +ALTER TABLE recentchanges + ADD rc_ip char(15) NOT NULL default '', + ADD INDEX rc_ip (rc_ip); + + -- 2.20.1