Remove duplicate auditlog.go schema
Some checks failed
CI / Lint (pull_request) Failing after 5s
CI / Test (pull_request) Successful in 54s
CI / Build (pull_request) Successful in 37s
CI / Format Check (pull_request) Failing after 2s

Keep audit_log.go (complete schema) and remove empty auditlog.go stub.
This commit is contained in:
2025-11-07 09:04:05 +01:00
parent 97c3b76697
commit 9b89c45fef

View File

@@ -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
}