diff options
author | Brendon Murphy <xternal1+github@gmail.com> | 2013-01-23 01:47:23 -0800 |
---|---|---|
committer | Brendon Murphy <xternal1+github@gmail.com> | 2013-02-26 00:04:05 -0800 |
commit | 1dc98c143c4bf84ccfb55b30c7d41b29b62d50cf (patch) | |
tree | f3d8f59817cca43e77d7564f4f3a37b95c73fc16 /activerecord/test/schema | |
parent | 92aa789ce1ee9d7a2220bb49d22288f292d05367 (diff) | |
download | rails-1dc98c143c4bf84ccfb55b30c7d41b29b62d50cf.tar.gz rails-1dc98c143c4bf84ccfb55b30c7d41b29b62d50cf.tar.bz2 rails-1dc98c143c4bf84ccfb55b30c7d41b29b62d50cf.zip |
cache_key consults updated_on timestamp if present
- Extract max timestamp retrieval for cache_key
- Update changelog for cache_key changes
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index d789b6cb7a..a323b1e722 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -219,6 +219,8 @@ ActiveRecord::Schema.define do t.integer :salary, :default => 70000 t.datetime :created_at t.datetime :updated_at + t.datetime :created_on + t.datetime :updated_on end create_table :developers_projects, :force => true, :id => false do |t| |