increments('id'); @if ($includeUsername) $table->string('username')->unique(); @endif $table->string('email')->unique(); $table->string('password'); $table->string('confirmation_code'); $table->string('remember_token')->nullable(); $table->boolean('confirmed')->default(false); $table->timestamps(); }); // Creates password reminders table Schema::create('password_reminders', function ($table) { $table->string('email'); $table->string('token'); $table->timestamp('created_at'); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('password_reminders'); Schema::drop('{{ $table }}'); } }