aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* save polymorphic joins from the has_many|one association (closes #3812) [Rick...David Heinemeier Hansson2006-02-123-4/+12
* Allow has_many :through to work with :include [Michael Schoen]. Closes #3611Michael Koziarski2006-02-102-2/+2
* PostgreSQL: smarter schema dumps using pk_and_sequence_for(table). Closes #2920.Jeremy Kemper2006-02-091-2/+14
* SQLServer: more compatible limit/offset emulation. Closes #3779.Jeremy Kemper2006-02-091-1/+3
* Closes #3784.Jeremy Kemper2006-02-091-5/+5
* Update AR default timezone docs.Jeremy Kemper2006-02-091-1/+1
* Polymorphic join support for has_one associations (has_one :foo, :as => :bar)...Jeremy Kemper2006-02-092-3/+9
* PostgreSQL: correctly parse negative integer column defaults. References #3776.Jeremy Kemper2006-02-091-1/+1
* * Fix pagination problems when using includeMichael Koziarski2006-02-094-21/+122
* ActiveRecord::RecordInvalid now states which validations failed in its defaul...Tobias Lütke2006-02-051-2/+2
* Update versions to match latest from stableDavid Heinemeier Hansson2006-02-051-1/+1
* Just go with Subclasses instead of OnlySubclassesDavid Heinemeier Hansson2006-02-041-1/+1
* Just go with Subclasses instead of OnlySubclassesDavid Heinemeier Hansson2006-02-041-4/+2
* Using AssociationCollection#build with arrays of hashes should call build, no...David Heinemeier Hansson2006-02-031-1/+1
* Remove definition of reloadable? from ActiveRecord::Base to make way for new ...Nicholas Seckar2006-02-021-8/+0
* Add Reloadable::OnlySubclasses which handles the common case where a base cla...Nicholas Seckar2006-02-022-7/+5
* Fixed schema handling for DB2 adapter that didn't work: an initial schema cou...David Heinemeier Hansson2006-02-012-8/+11
* Silly meDavid Heinemeier Hansson2006-02-011-5/+0
* Added Errors#any? to mean !Errors#empty? [DHH]David Heinemeier Hansson2006-02-011-0/+5
* Support the :column option for remove_index with the PostgreSQL adapter. Clos...Marcel Molina2006-01-311-7/+1
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-292-0/+8
* Add documentation for add_index and remove_index. Closes #3600.Marcel Molina2006-01-251-1/+11
* If the OCI library is not available, raise an exception indicating as much. C...Marcel Molina2006-01-251-0/+8
* give helpful error messages when fixtures accessed style table_name(:name) ca...Tobias Lütke2006-01-251-1/+5
* Make dynamic finders honor additional passed in :conditions. Closes #3569.Marcel Molina2006-01-221-2/+9
* Show a meaningful error when the DB2 adapter cannot be loaded due to missing ...Nicholas Seckar2006-01-221-0/+8
* allow has_many :through to work with custom :foreign key (closes #3422) [Rick...David Heinemeier Hansson2006-01-211-2/+1
* Fix .count for has_many associations with multi-line finder-sql. Closes #3540 Michael Koziarski2006-01-212-2/+4
* Add AR::Base.base_class for querying the ancestor AR::Base subclass [Jamis Buck]Jamis Buck2006-01-201-4/+16
* allow the 'lock_version' column to be configured with set_locking_column. Cl...Michael Koziarski2006-01-141-4/+25
* Don't hardcode id in acts_as_list. Closes #3370Michael Koziarski2006-01-141-1/+1
* Don't alter the Hash passed to attributes=, closes #3385Michael Koziarski2006-01-141-2/+3
* Escape database name in MySQL adapter when creating and dropping databases. C...Marcel Molina2006-01-131-2/+2
* Disambiguate table names for columns in validates_uniquness_of's WHERE clause...Marcel Molina2006-01-131-3/+3
* Fixed that .with_scope imposed create parameters bypass attr_protectedTobias Lütke2006-01-101-2/+3
* Fix doc bugDavid Heinemeier Hansson2006-01-091-1/+1
* Don't raise an exception when there are more keys than there are named bind v...Marcel Molina2006-01-051-1/+0
* Multiple enhancements and adjustments to DB2 adaptor. Closes #3377.Marcel Molina2006-01-042-64/+99
* Sanitize scoped conditions.Marcel Molina2006-01-041-1/+1
* Added option to Base.reflection_of_all_associations to specify a specific ass...David Heinemeier Hansson2005-12-271-3/+5
* ActiveRecord::Base.schema_ignore_tables => ActiveRecord::SchemaDumper.ignore_...Tobias Lütke2005-12-243-8/+8
* SchemaDumper now doesn't fail anymore when there are unknown column types in ...Tobias Lütke2005-12-243-19/+46
* Fixed that saving a model with multiple habtm associations, would only save t...Florian Weber2005-12-211-4/+1
* Fix form_for use of datetime_select and date_select as well as a few stylisti...David Heinemeier Hansson2005-12-211-3/+4
* Fix change_column to work with postgres 7.x and 8.x.Scott Barron2005-12-201-1/+11
* removed :piggyback in favor of just allowing :select on :through associationsTobias Lütke2005-12-202-6/+2
* made .find() and class method delegation work on :through relationsTobias Lütke2005-12-202-4/+35
* DRY up PG's add_column a bit to use change_column_default and match the otherScott Barron2005-12-201-9/+3
* added :piggyback option to has_many :through relationships to pick up values ...Tobias Lütke2005-12-202-2/+10
* Check for the key instead of the value, because it (the value) can be false.Scott Barron2005-12-201-1/+1