treeherder icon indicating copy to clipboard operation
treeherder copied to clipboard

Add field for searchable data in the commit table

Open osujipius opened this issue 1 year ago • 0 comments

This PR fixes mozilla/perfcompare#795

The commit table is modified to include a new field search_data that will be used to hold all searchable data related to relevant records

push = models.ForeignKey(Push, on_delete=models.CASCADE, related_name="commits")
revision = models.CharField(max_length=40, db_index=True)
author = models.CharField(max_length=150)
comments = models.TextField()
search_data = models.TextField(blank=True, null=True)

osujipius avatar Oct 25 '24 11:10 osujipius