|  | @@ -0,0 +1,30 @@
 | 
	
		
			
				|  |  | +<?php
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +use Illuminate\Support\Facades\Schema;
 | 
	
		
			
				|  |  | +use Illuminate\Database\Schema\Blueprint;
 | 
	
		
			
				|  |  | +use Illuminate\Database\Migrations\Migration;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +class UpdateMineTable extends Migration
 | 
	
		
			
				|  |  | +{
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * Run the migrations.
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     * @return void
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public function up()
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        Schema::table('mine', function (Blueprint $table) {
 | 
	
		
			
				|  |  | +            $table->string('nid')->nullable()->comment('新ID');
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * Reverse the migrations.
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     * @return void
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public function down()
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        //
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 |