mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
16 lines
572 B
SQL
16 lines
572 B
SQL
-- Page length field (in bytes) for current revision of page.
|
|
-- Since page text is now stored separately, it may be compressed
|
|
-- or otherwise difficult to calculate. Additionally, the field
|
|
-- can be indexed for handy 'long' and 'short' page lists.
|
|
--
|
|
-- Added 2005-03-12
|
|
|
|
ALTER TABLE /*$wgDBprefix*/page
|
|
ADD page_len int unsigned NOT NULL,
|
|
ADD INDEX (page_len);
|
|
|
|
-- Not accurate if upgrading from intermediate
|
|
-- 1.5 alpha and have revision compression on.
|
|
UPDATE /*$wgDBprefix*/page, /*$wgDBprefix*/text
|
|
SET page_len=LENGTH(old_text)
|
|
WHERE page_latest=old_id;
|