diff --git a/app/ReportLog.php b/app/ReportLog.php new file mode 100644 index 000000000..dab0aa1ed --- /dev/null +++ b/app/ReportLog.php @@ -0,0 +1,10 @@ +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'); + } +}