2013-05-07 13:45:35 -04:00
|
|
|
* Also support extentions in PostgreSQL 9.1. This feature has been supported since 9.1.
|
|
|
|
|
|
|
|
*kennyj*
|
|
|
|
|
2013-05-12 13:49:49 -04:00
|
|
|
* Deprecate `ConnectionAdapters::SchemaStatements#distinct`,
|
|
|
|
as it is no longer used by internals.
|
|
|
|
|
|
|
|
*Ben Woosley#
|
|
|
|
|
2013-05-11 22:51:27 -04:00
|
|
|
* Fix pending migrations error when loading schema and `ActiveRecord::Base.table_name_prefix`
|
|
|
|
is not blank.
|
2013-05-11 22:32:33 -04:00
|
|
|
|
2013-05-11 22:51:27 -04:00
|
|
|
Call `assume_migrated_upto_version` on connection to prevent it from first
|
|
|
|
being picked up in `method_missing`.
|
|
|
|
|
|
|
|
In the base class, `Migration`, `method_missing` expects the argument to be a
|
|
|
|
table name, and calls `proper_table_name` on the arguments before sending to
|
|
|
|
`connection`. If `table_name_prefix` or `table_name_suffix` is used, the schema
|
|
|
|
version changes to `prefix_version_suffix`, breaking `rake test:prepare`.
|
2013-05-11 22:32:33 -04:00
|
|
|
|
|
|
|
Fixes #10411.
|
|
|
|
|
|
|
|
*Kyle Stevens*
|
|
|
|
|
2013-05-11 22:51:27 -04:00
|
|
|
* Method `read_attribute_before_type_cast` should accept input as symbol.
|
2013-05-11 03:08:08 -04:00
|
|
|
|
|
|
|
*Neeraj Singh*
|
|
|
|
|
2013-05-06 18:31:20 -04:00
|
|
|
* Confirm a record has not already been destroyed before decrementing counter cache.
|
|
|
|
|
|
|
|
*Ben Tucker*
|
|
|
|
|
2013-05-06 21:22:43 -04:00
|
|
|
* Fixed a bug in `ActiveRecord#sanitize_sql_hash_for_conditions` in which
|
|
|
|
`self.class` is an argument to `PredicateBuilder#build_from_hash`
|
2013-05-07 13:04:11 -04:00
|
|
|
causing `PredicateBuilder` to call non-existent method
|
2013-05-06 21:22:43 -04:00
|
|
|
`Class#reflect_on_association`.
|
2013-04-25 20:20:33 -04:00
|
|
|
|
|
|
|
*Zach Ohlgren*
|
|
|
|
|
2013-05-03 00:46:18 -04:00
|
|
|
* While removing index if column option is missing then raise IrreversibleMigration exception.
|
|
|
|
|
|
|
|
Following code should raise `IrreversibleMigration`. But the code was
|
|
|
|
failing since options is an array and not a hash.
|
|
|
|
|
|
|
|
def change
|
|
|
|
change_table :users do |t|
|
|
|
|
t.remove_index [:name, :email]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Fix was to check if the options is a Hash before operating on it.
|
|
|
|
|
|
|
|
Fixes #10419.
|
|
|
|
|
|
|
|
*Neeraj Singh*
|
|
|
|
|
2013-02-25 21:06:35 -05:00
|
|
|
* Do not overwrite manually built records during one-to-one nested attribute assignment
|
|
|
|
|
|
|
|
For one-to-one nested associations, if you build the new (in-memory)
|
|
|
|
child object yourself before assignment, then the NestedAttributes
|
|
|
|
module will not overwrite it, e.g.:
|
|
|
|
|
|
|
|
class Member < ActiveRecord::Base
|
|
|
|
has_one :avatar
|
|
|
|
accepts_nested_attributes_for :avatar
|
|
|
|
|
|
|
|
def avatar
|
|
|
|
super || build_avatar(width: 200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
member = Member.new
|
|
|
|
member.avatar_attributes = {icon: 'sad'}
|
|
|
|
member.avatar.width # => 200
|
|
|
|
|
|
|
|
*Olek Janiszewski*
|
|
|
|
|
2013-04-10 23:29:19 -04:00
|
|
|
* fixes bug introduced by #3329. Now, when autosaving associations,
|
|
|
|
deletions happen before inserts and saves. This prevents a 'duplicate
|
|
|
|
unique value' database error that would occur if a record being created had
|
|
|
|
the same value on a unique indexed field as that of a record being destroyed.
|
|
|
|
|
|
|
|
*Johnny Holton*
|
|
|
|
|
2013-05-01 14:33:11 -04:00
|
|
|
* Handle aliased attributes in ActiveRecord::Relation.
|
|
|
|
|
|
|
|
When using symbol keys, ActiveRecord will now translate aliased attribute names to the actual column name used in the database:
|
|
|
|
|
|
|
|
With the model
|
|
|
|
|
|
|
|
class Topic
|
|
|
|
alias_attribute :heading, :title
|
|
|
|
end
|
|
|
|
|
|
|
|
The call
|
|
|
|
|
|
|
|
Topic.where(heading: 'The First Topic')
|
|
|
|
|
|
|
|
should yield the same result as
|
|
|
|
|
|
|
|
Topic.where(title: 'The First Topic')
|
|
|
|
|
|
|
|
This also applies to ActiveRecord::Relation::Calculations calls such as `Model.sum(:aliased)` and `Model.pluck(:aliased)`.
|
|
|
|
|
|
|
|
This will not work with SQL fragment strings like `Model.sum('DISTINCT aliased')`.
|
|
|
|
|
|
|
|
*Godfrey Chan*
|
|
|
|
|
2013-04-30 20:24:29 -04:00
|
|
|
* Mute `psql` output when running rake db:schema:load.
|
|
|
|
|
|
|
|
*Godfrey Chan*
|
|
|
|
|
2013-03-07 16:43:00 -05:00
|
|
|
* Trigger a save on `has_one association=(associate)` when the associate contents have changed.
|
|
|
|
|
|
|
|
Fix #8856.
|
|
|
|
|
|
|
|
*Chris Thompson*
|
|
|
|
|
2013-04-30 13:21:23 -04:00
|
|
|
* Abort a rake task when missing db/structure.sql like `db:schema:load` task.
|
|
|
|
|
|
|
|
*kennyj*
|
2013-04-25 20:20:33 -04:00
|
|
|
|
2013-05-02 11:09:59 -04:00
|
|
|
* rake:db:test:prepare falls back to original environment after execution.
|
2013-04-25 20:20:33 -04:00
|
|
|
|
2013-05-02 11:09:59 -04:00
|
|
|
*Slava Markevich*
|
2013-03-23 14:09:53 -04:00
|
|
|
|
2013-04-29 12:06:45 -04:00
|
|
|
Please check [4-0-stable](https://github.com/rails/rails/blob/4-0-stable/activerecord/CHANGELOG.md) for previous changes.
|