summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-rc_len.sql
blob: 6c781a0090c81ddab0db8125cf28c107782ded5a (plain)
1
2
3
4
5
6
7
8
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, ADD COLUMN rc_new_len int;