id(); $table->string('username')->unique(); $table->string('email')->nullable(); $table->timestamp('email_verified_at')->nullable(); $table->boolean('is_under_14')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };