mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 15:49:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
 | 
						|
return new class extends Migration
 | 
						|
{
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        Schema::table('yabs', function($table)
 | 
						|
        {
 | 
						|
            $table->integer('gb5_single')->nullable()->change();
 | 
						|
            $table->integer('gb5_multi')->nullable()->change();
 | 
						|
            $table->integer('gb5_id')->nullable()->change();
 | 
						|
        });
 | 
						|
    }
 | 
						|
};
 |