From 9b89c45fefd4a7e6138340f9593ebf9d8651a041 Mon Sep 17 00:00:00 2001 From: 0x1d Date: Fri, 7 Nov 2025 09:04:05 +0100 Subject: [PATCH] Remove duplicate auditlog.go schema Keep audit_log.go (complete schema) and remove empty auditlog.go stub. --- ent/schema/auditlog.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 ent/schema/auditlog.go diff --git a/ent/schema/auditlog.go b/ent/schema/auditlog.go deleted file mode 100644 index 1fe5105..0000000 --- a/ent/schema/auditlog.go +++ /dev/null @@ -1,19 +0,0 @@ -// Package schema defines the Ent schema for audit log entities. -package schema - -import "entgo.io/ent" - -// AuditLog holds the schema definition for the AuditLog entity. -type AuditLog struct { - ent.Schema -} - -// Fields of the AuditLog. -func (AuditLog) Fields() []ent.Field { - return nil -} - -// Edges of the AuditLog. -func (AuditLog) Edges() []ent.Edge { - return nil -}