summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-rc_len.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-rc_len.sql')
-rw-r--r--maintenance/archives/patch-rc_len.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/maintenance/archives/patch-rc_len.sql b/maintenance/archives/patch-rc_len.sql
new file mode 100644
index 00000000..920f755b
--- /dev/null
+++ b/maintenance/archives/patch-rc_len.sql
@@ -0,0 +1,9 @@
+--
+-- patch-rc_len.sql
+-- Adds two rows to recentchanges to hold the text size befor and after the edit
+-- 2006-12-03
+--
+
+ALTER TABLE /*$wgDBprefix*/recentchanges
+ ADD COLUMN rc_old_len int(10), ADD COLUMN rc_new_len int(10);
+