feat: New APIs for search (#6564)

- Adding new API endpoints for search
- Migrations to add appropriate indexes
This commit is contained in:
Sojan Jose
2023-02-28 22:00:36 +05:30
committed by GitHub
parent 9bd47588fc
commit d4e7eaecce
18 changed files with 423 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
class AddIndexForSearchOperations < ActiveRecord::Migration[6.1]
def change
enable_extension('pg_trgm')
Migration::AddSearchIndexesJob.perform_later
end
end