aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* Fixed that Base.save should always return false if the save didn't succeed, i...David Heinemeier Hansson2006-02-282-4/+18
* Make rake load_fixtures work with the new, flexible, fixtures api. [Rick Ols...Michael Koziarski2006-02-281-1/+1
* Add more documentation for Reflection. [robby@planetargon.com]. Closes #4001Michael Koziarski2006-02-281-1/+4
* Change Fixtures.create_fixtures arity to be backwards compatibleNicholas Seckar2006-02-281-1/+1
* Speed up class -> connection caching and stale connection verification. Close...Jeremy Kemper2006-02-272-31/+95
* Add set_fixture_class to allow the use of table name accessors with models wh...Nicholas Seckar2006-02-271-9/+16
* Only load .yml files in sub-directoriesDavid Heinemeier Hansson2006-02-271-1/+1
* Added that fixtures to placed in subdirectories of the main fixture files are...David Heinemeier Hansson2006-02-271-1/+8
* doc fix (closes #3972) [robby]David Heinemeier Hansson2006-02-271-7/+7
* Dont require association classes before theyre supposed to be used (closes #3...David Heinemeier Hansson2006-02-272-15/+2
* Define attribute query methods to avoid method_missing calls. Closes #3677.Jeremy Kemper2006-02-271-5/+8
* CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default ins...David Heinemeier Hansson2006-02-271-1/+1
* Example for validates_presence_of method (closes #3966) [Robby Russell]David Heinemeier Hansson2006-02-261-1/+7
* ActiveRecord::Base.remove_connection explicitly closes database connections a...Jeremy Kemper2006-02-265-9/+31
* Added support for nested scopes (closes #3407) [anna@wota.jp]David Heinemeier Hansson2006-02-261-23/+66
* Aesthetics, babyDavid Heinemeier Hansson2006-02-261-3/+5
* Fixed db2 connection with empty user_name and auth options (closes #3622) [ph...David Heinemeier Hansson2006-02-261-1/+1
* Fixed validates_length_of to work on UTF-8 strings by using characters instea...David Heinemeier Hansson2006-02-251-21/+25
* Compatibility patches for calculationsDavid Heinemeier Hansson2006-02-251-31/+27
* Updated docs (closes #3799) [ruby@bobsilva.com]David Heinemeier Hansson2006-02-251-0/+10
* Fixed that reflections would bleed across class boundaries in single-table in...David Heinemeier Hansson2006-02-251-2/+4
* Makes ActiveRecord::Schema respect AR::Base.table_name_prefix (closes #3848) ...David Heinemeier Hansson2006-02-251-2/+2
* Documentation fixes (closes #3838)David Heinemeier Hansson2006-02-252-2/+2
* Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.ma...David Heinemeier Hansson2006-02-253-55/+199
* Renamed Errors#count to Errors#size but kept an alias for the old name (and i...David Heinemeier Hansson2006-02-231-1/+4
* Reflections don't attempt to resolve module nesting of association classes. S...Jeremy Kemper2006-02-222-8/+9
* Improved the Oracle OCI Adapter with better performance for column reflection...David Heinemeier Hansson2006-02-212-26/+47
* Added :count option to pagination that'll make it possible for the ActiveReco...David Heinemeier Hansson2006-02-201-1/+1
* 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