Skip to content

Instantly share code, notes, and snippets.

@ljercha
Last active August 29, 2015 14:19
Show Gist options
  • Save ljercha/73d05df21a0f699661d5 to your computer and use it in GitHub Desktop.
Save ljercha/73d05df21a0f699661d5 to your computer and use it in GitHub Desktop.
Search by name foreign key
class Meal < ActiveRecord::Base
has_one :dish
self.per_page = 10
searchable do
text :date
integer :dish_id # here I wanna search by dish.name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment