mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
8 lines
189 B
Python
8 lines
189 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
from auditlog.models import AbstractLogEntry
|
||
|
|
|
||
|
|
|
||
|
|
class CustomLogEntryModel(AbstractLogEntry):
|
||
|
|
role = models.CharField(max_length=100, null=True, blank=True)
|