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