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