mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
12 lines
265 B
SQL
12 lines
265 B
SQL
--
|
|
-- linkscc table used to cache link lists in easier to digest form
|
|
-- November 2003
|
|
--
|
|
-- Format later updated.
|
|
--
|
|
|
|
CREATE TABLE /*$wgDBprefix*/linkscc (
|
|
lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
|
|
lcc_cacheobj MEDIUMBLOB NOT NULL
|
|
|
|
) /*$wgDBTableOptions*/;
|