text('description')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('eggs', function (Blueprint $table) { $table->text('description')->nullable(false)->change(); }); } };