summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index a22a9307f..4b4753fe3 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -4358,7 +4358,6 @@ class Organization(Address, Merge, OwnPerms, ValueGetter, MainItem):
url = models.URLField(verbose_name=_("Web address"), blank=True, null=True)
cached_label = models.TextField(_("Cached name"), null=True, blank=True,
db_index=True)
- history = HistoricalRecords()
DOWN_MODEL_UPDATE = ['members']
@@ -4563,7 +4562,6 @@ class Person(Address, Merge, OwnPerms, ValueGetter, MainItem):
verbose_name=_("Is attached to"), blank=True, null=True)
cached_label = models.TextField(_("Cached name"), null=True, blank=True,
db_index=True)
- history = HistoricalRecords()
DOWN_MODEL_UPDATE = ["author"]
class Meta: