Module: Switchman::ActiveRecord::BelongsToAssociation
- Defined in:
- lib/switchman/active_record/association.rb
Instance Method Summary collapse
Instance Method Details
#replace_keys(record) ⇒ Object
47 48 49 50 51 52 53 54 |
# File 'lib/switchman/active_record/association.rb', line 47 def replace_keys(record) if record && record.class.sharded_column?(reflection.association_primary_key(record.class)) foreign_id = record[reflection.association_primary_key(record.class)] owner[reflection.foreign_key] = Shard.relative_id_for(foreign_id, record.shard, owner.shard) else super end end |
#shard ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'lib/switchman/active_record/association.rb', line 56 def shard if @owner.class.sharded_column?(@reflection.foreign_key) && foreign_id = @owner[@reflection.foreign_key] Shard.shard_for(foreign_id, @owner.shard) else super end end |