New migration: update menu links

This commit is contained in:
slawkens
2024-02-03 18:58:20 +01:00
parent 8f23c62708
commit bbe922a65d
3 changed files with 13 additions and 2 deletions

11
system/migrations/40.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// 2024-02-03
// update pages links
use MyAAC\Models\Menu;
Menu::where('link', 'lastkills')->update(['link' => 'last-kills']);
Menu::where('link', 'serverInfo')->update(['link' => 'server-info']);
Menu::where('link', 'experienceStages')->update(['link' => 'exp-stages']);
Menu::where('link', 'experienceTable')->update(['link' => 'exp-table']);