Open J4bbi opened 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:
notes_on_people_mentioned
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)
In the collect tables "notes on" information could be located in three different locations.
For example,
notes_on_people_mentioned
, there is: