mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 04:26:51 +01:00 
			
		
		
		
	* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use App\Models\Task;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
 | 
						|
return new class extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Run the migrations.
 | 
						|
     */
 | 
						|
    public function up(): void
 | 
						|
    {
 | 
						|
        Schema::table('tasks', function (Blueprint $table) {
 | 
						|
            $table->dropForeign(['server']);
 | 
						|
 | 
						|
            $table->renameColumn('server', 'server_id');
 | 
						|
            $table->unsignedInteger('user_id')->nullable()->after('id');
 | 
						|
 | 
						|
            $table->foreign('server_id')->references('id')->on('servers');
 | 
						|
            $table->foreign('user_id')->references('id')->on('users');
 | 
						|
        });
 | 
						|
 | 
						|
        DB::transaction(function () {
 | 
						|
            foreach (Task::all() as $task) {
 | 
						|
                $task->user_id = $task->server->owner_id;
 | 
						|
                $task->save();
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     */
 | 
						|
    public function down(): void
 | 
						|
    {
 | 
						|
        Schema::table('tasks', function (Blueprint $table) {
 | 
						|
            $table->dropForeign(['server_id']);
 | 
						|
            $table->dropForeign(['user_id']);
 | 
						|
 | 
						|
            $table->renameColumn('server_id', 'server');
 | 
						|
            $table->dropColumn('user_id');
 | 
						|
 | 
						|
            $table->foreign('server')->references('id')->on('servers');
 | 
						|
        });
 | 
						|
    }
 | 
						|
};
 |