id(); $table->string('name')->nullable(); $table->string('email')->unique()->nullable();; $table->timestamp('email_verified_at')->nullable(); $table->string('password')->nullable(); $table->rememberToken()->nullable(); $table->timestamps(); }); } /** * Reverse the migrations * * @return void */ public function down() { Schema::dropIfExists('users'); } };