Working with hStore

123 Views Asked by At

I have been trying to search my hstore but nothing seams to work.

i have a model called players with a hstore names played_positions

when i do Player.last i get

Player.last
#<Player:0x007fa281c04bc8> {
                        :id => 4239,
                :first_name => "Deborah",
                 :last_name => "Rutherford",
                  :nickname => "Eulah",
          :played_positions => {
                                "position" => "OL"
                               }
{

but now I am having problems with getting all the players that gave the OL position

in my migration file i have

add_column :players, :played_positions, :text

And in my model i have

 store :played_positions

Thanks for all the help

1

There are 1 best solutions below

0
On

This will give you all the players with position OL

Player.where("played_positions -> 'position' = 'OL'")