Created
January 25, 2017 02:10
-
-
Save exviva/4a23c5035279ea9625ac1e4afec427ed to your computer and use it in GitHub Desktop.
Shameless model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/models/rate.rb | |
class Rate | |
RateStore.attach(self) | |
index do | |
integer :hotel_id | |
string :room_type | |
string :check_in_date | |
shard_on :hotel_id # required, values need to be numeric | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment