increments('id'); $table->string('name', 255); $table->bigInteger('timestamp'); $table->string('ip_address', 40); $table->string('agent', 2048)->default('Agent unavailable'); $table->boolean('site_owner')->default(0); $table->string('message', 512); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('guestbook__entries'); } };