diff --git a/app/Models/AuditLogEntry.php b/app/Models/AuditLogEntry.php new file mode 100644 index 0000000..c4bd3ee --- /dev/null +++ b/app/Models/AuditLogEntry.php @@ -0,0 +1,11 @@ +id(); + $table->string('user'); + $table->string('message'); + $table->json('affected')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('audit_log_entries'); + } +};