At the time of writing, Tuleap Legacy Mediawiki has two databases patterns:
- One database per project (
plugin_mediawiki_$PROJID
)
- One tableset per project (one database
plugin_mediawiki
and for each project a set of tables with $wgDBprefix
On Mediawiki Standalone side
- There is now one database dedicated to farm management (
plugin_mediawiki_standalone_farm
)
- One database per project (
plugin_mediawiki_$PROJID
)
We need to understand how we can setup the standalone MW with a fixed number of databases (ie without having the possibility to create databases on the fly):
- Can we have the central mediawiki database & usage of
$wgDBprefix
?
- Is
plugin_mediawiki_standalone_farm
mandatory or could it be in central database as well ?