From: Tim Starling Date: Thu, 17 Jun 2004 09:06:22 +0000 (+0000) Subject: alter table statement for rc_ip X-Git-Tag: 1.5.0alpha1~2834 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=617466b3ac7d143ed275df35dc7b6c1c92b0d7d1;p=lhc%2Fweb%2Fwiklou.git alter table statement for rc_ip --- 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); + +