id(); $table->string('name'); $table->string('avatar')->nullable(); $table->string('email')->unique(); $table->string('password'); $table->timestamp('email_verified_at')->nullable(); $table->boolean('is_admin')->default(0); $table->boolean('is_active')->default(1); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };