No commit activity in last 3 years
No release in over 3 years
Allows hstore columns to store belongs_to association foreign keys with the same functionality as the default belongs_to
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3

Runtime

 Project Readme

BelongsToHstore

Build Status Gem Version Code Climate Coverage Status

Create ActiveRecord belongs_to associations using postgresql hstore columns. Compatible with polymorphic associations and supports eager loading.

Installation

Add this line to your application's Gemfile:

gem 'activerecord-postgres-hstore' # Rails 3 only
gem 'belongs_to_hstore'

And then execute:

$ bundle

Or install it yourself as:

$ gem install belongs_to_hstore

Usage

Create an association using an hstore column:

class Audit < ActiveRecord::Base
  include BelongsToHstore::Association
  serialize :properties, ActiveRecord::Coders::Hstore # Rails 3 only

  belongs_to_hstore :properties, :item
end

Works for polymorphic associations too:

class Audit < ActiveRecord::Base
  include BelongsToHstore::Association
  serialize :properties, ActiveRecord::Coders::Hstore # Rails 3 only

  belongs_to_hstore :properties, :item, :polymorphic => true
end

Eager load hstore associations to eliminate N+1 querying:

Audit.includes(:item).all

Use hstore query helpers to find records:

Audit.where_properties(:item_id => 123)
Audit.where_properties(:item_id => [123, 456, 789])

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request