id('activity_id'); $table->integer('user_id')->nullable(); $table->string('controllerName')->nullable(); $table->string('methodName')->nullable(); $table->string('actionUrl')->nullable(); $table->string('activity')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('activity_logs'); } };