string('name', 255)->nullable()->default(NULL)->change(); $table->string('email', 255)->nullable()->default(NULL)->change(); $table->string('password', 255)->nullable()->default(NULL)->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->string('name', 255)->nullable(false)->change(); $table->string('email', 255)->nullable(false)->change(); $table->string('password', 255)->nullable(false)->change(); }); } };