mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
14 lines
358 B
PHP
14 lines
358 B
PHP
<?php
|
|
|
|
return new class() extends UpgradeScript {
|
|
public function run(): void
|
|
{
|
|
$this->runMigrations();
|
|
|
|
PurgeExpiredSessions::schedule(new Language('core', 'en_UK'));
|
|
PurgeInactiveUsers::schedule(new Language('core', 'en_UK'));
|
|
SetupDefaultUserNotifications::schedule();
|
|
|
|
$this->setVersion('2.2.0');
|
|
}
|
|
};
|