Suppose you have an Article model that belongs to a Category, and you want to search articles by text content from both the article's own fields and its related category name.
# models.py
from django.db import models
from django.contrib.postgres.indexes import GinIndex