आपने उस डेटाबेस में hstore एक्सटेंशन इंस्टॉल नहीं किया है जिसका रेल उपयोग कर रहा है।
उदाहरण के लिए, अगर मैं कहूं select 'a' => 'b'
मेरे एक डेटाबेस में जिसमें hstore नहीं है, मुझे यह मिलता है:
=> select 'a' => 'b';
ERROR: operator does not exist: unknown => unknown
LINE 1: select 'a' => 'b';
^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.
लेकिन किसी अन्य डेटाबेस में जिसमें hstore स्थापित है, मुझे यह मिलता है:
=> select 'a' => 'b';
?column?
----------
"a"=>"b"
(1 row)
आपको एक create extension hstore
करना होगा
आपके रेल डेटाबेस में।