aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Fixed memory leak with Active Record classes when Dependencies.mechanism = :l...David Heinemeier Hansson2005-09-201-0/+4
* Improved migrations' behavior when the schema_info table is empty.Nicholas Seckar2005-09-202-1/+3
* Fixed that Observers didn't observe sub-classes #627 [Florian Weber]David Heinemeier Hansson2005-09-193-1/+13
* Fix eager loading error messages, allow :include to specify tables using stri...Nicholas Seckar2005-09-183-2/+15
* Added check for RAILS_CONNECTION_ADAPTERS on startup and only load the connec...David Heinemeier Hansson2005-09-151-1/+1
* Added check for RAILS_CONNECTION_ADAPTERS on startup and only load the connec...David Heinemeier Hansson2005-09-152-7/+10
* Only attempt to require Active Support if it hasnt been already #1959David Heinemeier Hansson2005-09-151-8/+10
* Fixed various problems with has_and_belongs_to_many when using customer finde...David Heinemeier Hansson2005-09-134-6/+21
* Added dump of schema version to the db_structure_dump task for databases that...David Heinemeier Hansson2005-09-122-2/+12
* Rolled back broken #1814David Heinemeier Hansson2005-09-113-26/+1
* Refactored to a more readble form #1813David Heinemeier Hansson2005-09-112-4/+2
* Added better exception error when unknown column types are used with migratio...David Heinemeier Hansson2005-09-114-2/+29
* Fix testsDavid Heinemeier Hansson2005-09-111-19/+16
* Use the inflector rules made for the purposeDavid Heinemeier Hansson2005-09-111-1/+1
* Fixed "connection lost" issue with the bundled Ruby/MySQL driver (would kill ...David Heinemeier Hansson2005-09-112-0/+8
* Fix fixture problem for pgsqlDavid Heinemeier Hansson2005-09-111-2/+2
* Fixed comparison of Active Record objects so two new objects are not equal #2...David Heinemeier Hansson2005-09-093-1/+10
* Fixed that the SQL Server adapter would sometimes return DBI::Timestamp objec...David Heinemeier Hansson2005-09-093-4/+7
* Make the test_find_all_by_one_attribute and test_find_all_by_one_attribute_wi...David Heinemeier Hansson2005-09-091-1/+1
* Refactored away all the legacy validate_options calls and replaced them with ...David Heinemeier Hansson2005-09-095-22/+36
* Added the instance methods #root and #ancestors on acts_as_tree and fixed sib...David Heinemeier Hansson2005-09-094-13/+69
* Added documentation for #1904David Heinemeier Hansson2005-09-081-0/+15
* An explicit include ClassInheritableAttributes is no longer needed #1948 [Cal...David Heinemeier Hansson2005-09-082-4/+0
* Fixed that Active Record would call SHOW FIELDS twice (or more) for the same ...David Heinemeier Hansson2005-09-082-2/+4
* Give AR the new benchmark method tooDavid Heinemeier Hansson2005-09-061-5/+8
* Fix fragment benchmark calls and limit timings to 5 decimalsDavid Heinemeier Hansson2005-09-061-1/+1
* Added use_silence parameter to ActiveRecord::Base.benchmark that can be passe...David Heinemeier Hansson2005-09-062-5/+13
* Make sure the schema_info table is created before querying the current versio...Jamis Buck2005-09-022-0/+3
* Fixtures ignore table name prefix and suffix #1987 [Jakob S]Jamis Buck2005-09-023-1/+43
* Add documentation for index_type argument to add_index method for migrations ...Jamis Buck2005-09-022-1/+3
* Modify read_attribute to allow a symbol argument #2024 [Ken Kunz]Jamis Buck2005-09-023-2/+15
* Revert [2040], caused assignment of belongs_to associations to fail in some c...Jamis Buck2005-08-243-13/+20
* Add a failing testJamis Buck2005-08-241-0/+9
* Saving a record with two unsaved belongs_to associations pointing to the same...Jamis Buck2005-08-2310-4/+103
* Update changelogJamis Buck2005-08-141-0/+2
* Make destroy return self #1913 [sebastian.kanthak@muehlheim.de]Jamis Buck2005-08-142-1/+7
* Fix typo in validations documentation #1938 [court3nay]Jamis Buck2005-08-142-1/+4
* Make acts_as_list work for insert_at(1) #1966 [hensleyl@papermountain.org]Jamis Buck2005-08-143-1/+12
* Fix typo in count_by_sql documentation #1969 [Alexey Verkhovsky]Jamis Buck2005-08-142-1/+3
* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...Jamis Buck2005-07-304-7/+40
* Fix create_table so that id column is implicitly added [Rick Olson]Jamis Buck2005-07-273-6/+16
* Made Oracle a first-class connection adapter by adhering closer to idiomatic ...David Heinemeier Hansson2005-07-2418-59/+235
* Added warning about relying on habtm table aliases etcDavid Heinemeier Hansson2005-07-221-0/+5
* Dont be ambigious about the condition keyDavid Heinemeier Hansson2005-07-222-3/+2
* Added support for calling constrained class methods on has_many and has_and_b...David Heinemeier Hansson2005-07-2212-67/+299
* Added migration support for SQLite (using temporary tables to simulate ALTER ...David Heinemeier Hansson2005-07-224-17/+209
* Remove extra definition of supports_migrations? from abstract_adaptor.rbNicholas Seckar2005-07-222-4/+2
* Doc fixes #1775, #1776 [jon@instance-design.co.uk]David Heinemeier Hansson2005-07-221-1/+1
* A bit more work on the still unfinished query cache #1722David Heinemeier Hansson2005-07-221-3/+3
* Fix acts_as_list such that moving next-to-last item to the bottom does not re...Jamis Buck2005-07-203-5/+25