2014-12-23 09:20:39 -05:00
|
|
|
* Add a `:foreign_key` option to `references` and associated migration
|
|
|
|
methods. The model and migration generators now use this option, rather than
|
|
|
|
the `add_foreign_key` form.
|
|
|
|
|
|
|
|
*Sean Griffin*
|
|
|
|
|
2014-12-22 21:30:00 -05:00
|
|
|
* Don't raise when writing an attribute with an out-of-range datetime passed
|
|
|
|
by the user.
|
|
|
|
|
|
|
|
*Grey Baker*
|
|
|
|
|
2014-12-23 06:07:15 -05:00
|
|
|
* Replace deprecated `ActiveRecord::Tasks::DatabaseTasks#load_schema` with
|
|
|
|
`ActiveRecord::Tasks::DatabaseTasks#load_schema_for`.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2014-12-23 01:19:14 -05:00
|
|
|
* Fixes bug with 'ActiveRecord::Type::Numeric' that causes negative values to
|
|
|
|
be marked as having changed when set to the same negative value.
|
|
|
|
|
2014-12-23 02:56:17 -05:00
|
|
|
Closes #18161.
|
2014-12-23 01:19:14 -05:00
|
|
|
|
|
|
|
*Daniel Fox*
|
|
|
|
|
2014-12-18 04:07:23 -05: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 03:58:34 -05: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-12-23 02:56:17 -05:00
|
|
|
* Fix undesirable RangeError by `Type::Integer`. Add `Type::UnsignedInteger`.
|
2014-11-26 20:06:49 -05:00
|
|
|
|
|
|
|
*Ryuta Kamizono*
|
|
|
|
|
2014-12-08 14:43:16 -05: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 14:51:41 -05:00
|
|
|
* Remove deprecated behavior allowing nested arrays to be passed as query
|
|
|
|
values.
|
|
|
|
|
|
|
|
*Melanie Gilman*
|
|
|
|
|
2014-12-04 09:49:51 -05:00
|
|
|
* Deprecate passing a class as a value in a query. Users should pass strings
|
|
|
|
instead.
|
|
|
|
|
|
|
|
*Melanie Gilman*
|
|
|
|
|
2014-12-03 13:27:13 -05:00
|
|
|
* `add_timestamps` and `remove_timestamps` now properly reversible with
|
|
|
|
options.
|
|
|
|
|
|
|
|
*Noam Gagliardi-Rabinovich*
|
|
|
|
|
2014-11-06 10:40:51 -05: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 13:29:26 -05:00
|
|
|
Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/activerecord/CHANGELOG.md) for previous changes.
|