53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 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('eggs', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable()->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('nests', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable()->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('nodes', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable()->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('locations', function (Blueprint $table) {
 | |
|             $table->text('long')->nullable()->change();
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      */
 | |
|     public function down(): void
 | |
|     {
 | |
|         Schema::table('eggs', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable(false)->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('nests', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable(false)->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('nodes', function (Blueprint $table) {
 | |
|             $table->text('description')->nullable(false)->change();
 | |
|         });
 | |
| 
 | |
|         Schema::table('locations', function (Blueprint $table) {
 | |
|             $table->text('long')->nullable(false)->change();
 | |
|         });
 | |
|     }
 | |
| };
 | 
