Manual:$wgExtNewTables

This page is a translated version of the page Manual:$wgExtNewTables and the translation is 70% complete.
Extension fields: $wgExtNewTables
Extension Defined tables to be added on schema change
Introducido en la versión:1.11.0 (r23759)
Eliminado en la versión:1.36.0 (Gerrit change 554602; git #95649c39)
Valores permitidos:(véase más abajo)
Valor predeterminado:[]

Detalles

Can be used with Manual:Hooks/LoadExtensionSchemaUpdates to add additional database tables when maintenance/update.php is called.

Uso

$wgExtNewTables[] = array( 'tablename', 'schema_file.sql' );

Note that maintenance/update.php will replace /*_*/ with the value of $wgDBprefix . Por ejemplo:

CREATE TABLE /*_*/table_name ( //...

Véase Extension:FlaggedRevs para un ejemplo.

Véase también