increments('id'); $table->string('username', 191)->unique(); $table->string('phone', 191)->unique(); $table->string('name', 191); $table->string('email', 191)->unique(); $table->string('password', 191); $table->string('remember_token', 100)->nullable(); $table->char('uuid', 36); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('users'); } }