id(); $table->string("description", 255); $table->enum('type', ['error', 'access'])->default('access'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('logs'); } };