* DB schema change: added two columns (rc_old_len and rc_new_len) to the recentchange...
[lhc/web/wiklou.git] / maintenance / archives / patch-rc_old_len.sql
1 --
2 -- patch-rc_old_len.sql
3 -- Adds a row to recentchanges to hold the text size before the edit
4 -- 2006-12-03
5 --
6
7 ALTER TABLE /*$wgDBprefix*/recentchanges
8 ADD COLUMN rc_old_len int(10) default 0;
9