Changeset 9127
- Timestamp:
- 03/29/08 00:04:27 (1 month ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record.rb (modified) (2 diffs)
- trunk/activerecord/lib/active_record/dirty.rb (added)
- trunk/activerecord/test/cases/dirty_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r9122 r9127 1 1 *SVN* 2 3 * Track changes to unsaved attributes. [Jeremy Kemper] 2 4 3 5 * Switched to UTC-timebased version numbers for migrations and the schema. This will as good as eliminate the problem of multiple migrations getting the same version assigned in different branches. Also added rake db:migrate:up/down to apply individual migrations that may need to be run when you merge branches #11458 [jbarnette] trunk/activerecord/lib/active_record.rb
r9084 r9127 56 56 require 'active_record/serialization' 57 57 require 'active_record/attribute_methods' 58 require 'active_record/dirty' 58 59 59 60 ActiveRecord::Base.class_eval do … … 74 75 include ActiveRecord::Serialization 75 76 include ActiveRecord::AttributeMethods 77 include ActiveRecord::Dirty 76 78 end 77 79