core: remove default value for OperationLog

This commit is contained in:
2019-11-14 16:11:20 +01:00
parent e634cda318
commit 1c03ce621f
2 changed files with 2 additions and 6 deletions

View File

@ -1467,10 +1467,7 @@ class OperationLog(models.Model):
User, related_name="logs", on_delete=models.SET_NULL, null=True
)
operation_type = models.CharField(
_("operation type"),
max_length=40,
choices=settings.SITH_LOG_OPERATION_TYPE,
default=settings.SITH_LOG_OPERATION_TYPE[0][0],
_("operation type"), max_length=40, choices=settings.SITH_LOG_OPERATION_TYPE,
)
def is_owned_by(self, user):