mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-10-31 16:06:24 +01:00 
			
		
		
		
	 3f6ff3a332
			
		
	
	3f6ff3a332
	
	
	
		
			
			* Migrations up down * Add forum model * Syntactic sugar for db structure changes * Refactor migrations with $up & $down * Fix migrations upgrade and downgrade + Add option to disable auto migrate * Add migrate:to command Usage: php aac migrate:to x (x - database version) * Show error when mail is not enabled * Fixes regarding to init.php * Add migrate command to manually upgrade db, incase auto migrate is disabled * Fixed rest of the migrations * Limit max version of database * Don't allow minus number * Option to clear specified plugin settings by name * Version is required * Fix PHPStan errors * Unset $up after migration, to prevent executing same migration twice * Add database version to output * This is not needed * Update 5.php * Set database_auto_migrate on install * Set blank & color only if current db version supports it * Fix duplicate function declaration
		
			
				
	
	
		
			24 lines
		
	
	
		
			830 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			830 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| // 2024-02-03
 | |
| // update pages links
 | |
| 
 | |
| use MyAAC\Models\Menu;
 | |
| 
 | |
| $up = function() {
 | |
| 	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']);
 | |
| 	Menu::where('link', 'creatures')->update(['link' => 'monsters']);
 | |
| };
 | |
| 
 | |
| $down = function() {
 | |
| 	Menu::where('link', 'last-kills')->update(['link' => 'lastkills']);
 | |
| 	Menu::where('link', 'server-info')->update(['link' => 'serverInfo']);
 | |
| 	Menu::where('link', 'exp-stages')->update(['link' => 'experienceStages']);
 | |
| 	Menu::where('link', 'exp-table')->update(['link' => 'experienceTable']);
 | |
| 	Menu::where('link', 'monsters')->update(['link' => 'creatures']);
 | |
| };
 | |
| 
 |