aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/store_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix backward compatibility with stored Hash values. Wrap coders to convert ↵Jeremy Kemper2012-05-301-13/+16
| | | | serialized values to indifferent access.
* Convert Hash to HashWithIndifferentAccess in ActiveRecord::Store.Andrey Voronkov2012-05-221-0/+34
| | | | | | | In order to make migration from 3.x apps easier, we should try to convert Hash instances to HashWithIndifferentAccess, to allow accessing values with both symbol and a string. This is follow up to changes in 3c0bf043.
* Custom coders support for ActiveRecord::Store. JSON, YAML, Marshal can be ↵Andrey Voronkov2012-05-091-1/+35
| | | | used out of the box.
* Allow store to be a not null column.Jeremy Walker2012-02-021-2/+11
|
* Fix typoJon Leighton2011-11-301-2/+2
|
* Merge branch 'master' of github.com:rails/railsDavid Heinemeier Hansson2011-10-251-3/+3
|\
| * Rails 4 is just around the corner. Stuck with 1.8 until then.Jeremy Kemper2011-10-131-3/+3
| |
* | Fix that changing a store should mark the store attribute as changedDavid Heinemeier Hansson2011-10-251-0/+5
|/
* Added ActiveRecord::Base.store for declaring simple single-column key/value ↵David Heinemeier Hansson2011-10-131-0/+29
stores [DHH]