You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solr or Elastic search would be great, but this is a demo app that uses a base install of sqlite3 not really a production level thing.
A quick view like this may do the trick:
SELECT
media.title ||
media.isbn ||
media.summary ||
author.first_name ||
author.last_name ||
author.display_name
AS search
FROM
media
LEFT JOIN media_authors ON media.id = media_authors.media_id
LEFT JOIN author ON media_authors.author_id = author.id
The user must have the ability to search for media.
The text was updated successfully, but these errors were encountered: