culturesofknowledge / emlo-project

Repository to manage the upgrade, development and maintenance of EMLO
0 stars 0 forks source link

Source of truth in Collect #253

Open J4bbi opened 1 year ago

J4bbi commented 1 year ago

In the collect tables "notes on" information could be located in three different locations.

For example, notes_on_people_mentioned, there is:

class CofkCollectWork(models.Model):
    notes_on_people_mentioned = models.TextField(blank=True, null=True)
class CofkCollectWorkSummary(models.Model):
    notes_on_people_mentioned = models.TextField(blank=True, null=True)
class CofkCollectPersonMentionedInWork(models.Model):
    notes_on_people_mentioned = models.TextField(blank=True, null=True)