increments('id'); $table->bigInteger('profile_id')->unsigned(); $table->bigInteger('item_id')->unsigned()->nullable(); $table->string('item_type')->nullable(); $table->string('action')->nullable(); $table->boolean('system_message')->default(false); $table->json('metadata')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('report_logs'); } }