increments('id'); $table->string('username')->unique(); $table->string('email'); $table->string('avatar')->nullable(); $table->string('password')->nullable(); $table->string('autologin')->nullable()->index(); $table->boolean('public_front')->default(false); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }