rails--rails/activerecord/lib
George Claghorn fc3acf2e8d Add change tracking methods for belongs_to associations
Permit checking whether a belongs_to association has been pointed to a new target record in the previous save and whether it will point to a new target record in the next save.

    post.category # => #<Category id: 1, name: "Ruby">

    post.category = Category.second   # => #<Category id: 2, name: "Programming">
    post.category_changed?            # => true
    post.category_previously_changed? # => false

    post.save!

    post.category_changed?            # => false
    post.category_previously_changed? # => true
2021-07-19 14:39:13 -04:00
..
active_record Add change tracking methods for belongs_to associations 2021-07-19 14:39:13 -04:00
arel Support NullsFirst for all databases. 2021-05-18 16:58:21 -04:00
rails/generators Make `reading_role` and `writing_role` module instance variables 2021-06-10 18:24:37 +02:00
active_record.rb Verify foreign keys after loading fixtures 2021-07-07 15:41:05 -05:00
arel.rb