mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
219 B
SQL
9 lines
219 B
SQL
--
|
|
-- 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;
|
|
|