id(); $table->string('name'); $table->string('ip'); $table->string('agent'); $table->longText('message'); $table->boolean('admin'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('guestbook__entries'); } };