2013-08-15 07:13:25 +00:00
|
|
|
* Change `ActiveRecord::Relation#update` behavior so that it can
|
|
|
|
be called without passing ids of the records to be updated.
|
|
|
|
|
|
|
|
This change allows to update multiple records returned by
|
|
|
|
`ActiveRecord::Relation` with callbacks and validations.
|
|
|
|
|
|
|
|
# Before
|
|
|
|
# ArgumentError: wrong number of arguments (1 for 2)
|
|
|
|
Comment.where(group: 'expert').update(body: "Group of Rails Experts")
|
|
|
|
|
|
|
|
# After
|
|
|
|
# Comments with group expert updated with body "Group of Rails Experts"
|
|
|
|
Comment.where(group: 'expert').update(body: "Group of Rails Experts")
|
|
|
|
|
|
|
|
*Prathamesh Sonpatki*
|
|
|
|
|
2014-12-18 09:07:23 +00:00
|
|
|
* Introduce `force: :cascade` option for `create_table`. Using this option
|
|
|
|
will recreate tables even if they have dependent objects (like foreign keys).
|
|
|
|
`db/schema.rb` now uses `force: :cascade`. This makes it possible to
|
|
|
|
reload the schema when foreign keys are in place.
|
|
|
|
|
|
|
|
*Matthew Draper*, *Yves Senn*
|
|
|
|
|
2014-12-16 08:58:34 +00:00
|
|
|
* `db:schema:load` and `db:structure:load` no longer purge the database
|
|
|
|
before loading the schema. This is left for the user to do.
|
|
|
|
`db:test:prepare` will still purge the database.
|
|
|
|
|
|
|
|
Closes #17945.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2014-11-27 01:06:49 +00:00
|
|
|
* Fix undesirable RangeError by Type::Integer. Add Type::UnsignedInteger.
|
|
|
|
|
|
|
|
*Ryuta Kamizono*
|
|
|
|
|
2014-12-08 19:43:16 +00:00
|
|
|
* Add `foreign_type` option to `has_one` and `has_many` association macros.
|
|
|
|
|
|
|
|
This option enables to define the column name of associated object's type for polymorphic associations.
|
|
|
|
|
|
|
|
*Ulisses Almeida, Kassio Borges*
|
|
|
|
|
2014-12-04 19:51:41 +00:00
|
|
|
* Remove deprecated behavior allowing nested arrays to be passed as query
|
|
|
|
values.
|
|
|
|
|
|
|
|
*Melanie Gilman*
|
|
|
|
|
2014-12-04 14:49:51 +00:00
|
|
|
* Deprecate passing a class as a value in a query. Users should pass strings
|
|
|
|
instead.
|
|
|
|
|
|
|
|
*Melanie Gilman*
|
|
|
|
|
2014-12-03 18:27:13 +00:00
|
|
|
* `add_timestamps` and `remove_timestamps` now properly reversible with
|
|
|
|
options.
|
|
|
|
|
|
|
|
*Noam Gagliardi-Rabinovich*
|
|
|
|
|
2014-11-06 15:40:51 +00:00
|
|
|
* `ActiveRecord::ConnectionAdapters::ColumnDumper#column_spec` and
|
|
|
|
`ActiveRecord::ConnectionAdapters::ColumnDumper#prepare_column_options` no
|
|
|
|
longer have a `types` argument. They should access
|
|
|
|
`connection#native_database_types` directly.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2014-12-03 18:29:26 +00:00
|
|
|
Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/activerecord/CHANGELOG.md) for previous changes.
|