| Current Path : /var/www/html/mediawiki-1.43.1/extensions/LoginNotify/includes/ |
| Current File : /var/www/html/mediawiki-1.43.1/extensions/LoginNotify/includes/SchemaHooks.php |
<?php
namespace LoginNotify;
use MediaWiki\Installer\DatabaseUpdater;
use MediaWiki\Installer\Hook\LoadExtensionSchemaUpdatesHook;
class SchemaHooks implements LoadExtensionSchemaUpdatesHook {
/**
* @param DatabaseUpdater $updater
*/
public function onLoadExtensionSchemaUpdates( $updater ) {
$updater->addExtensionTable(
'loginnotify_seen_net',
dirname( __DIR__ ) . "/sql/{$updater->getDB()->getType()}/tables-generated.sql"
);
}
}