fix(gitignore): allow ent/schema/ directory
This commit is contained in:
19
ent/schema/auditlog.go
Normal file
19
ent/schema/auditlog.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user