aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* validates_uniqueness_of behaves well with single-table inheritance. Closes #3...Jeremy Kemper2007-10-081-0/+27
* Raise ProtectedAttributeAssignmentError in development and test environments ...Jeremy Kemper2007-10-071-0/+18
* Fix calling .clear on a has_many :dependent=>:delete_all association. [ta...Michael Koziarski2007-10-071-1/+2
* Allow change_column to set NOT NULL in the PostgreSQL adaptor. Closes #3904 [...Michael Koziarski2007-10-071-1/+15
* Missed the addMichael Koziarski2007-10-062-0/+4
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-0619-2/+74
* Only cache attributes which need it for performance reasons. Closes #9767 [sk...Michael Koziarski2007-10-061-0/+51
* Test for each JSON fragment to workaround assumed hash ordering.Jeremy Kemper2007-10-061-1/+4
* Simplify some JSON testsJeremy Kemper2007-10-061-4/+4
* Fix that ActiveRecord would create attribute methods and override custom attr...Rick Olson2007-10-061-1/+38
* Don't call attr_readonly on polymorphic belongs_to associations, in case it m...Rick Olson2007-10-051-0/+4
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-041-1/+35
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-3/+2
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-5/+0
* Add attr_readonly to specify columns that are skipped during a normal ActiveR...Rick Olson2007-09-302-13/+47
* Make size for has_many :through use counter cache if it exists. Closes #9734...Rick Olson2007-09-301-0/+9
* Failing counter cache test. References #6896.Jeremy Kemper2007-09-281-0/+18
* Missing testDavid Heinemeier Hansson2007-09-281-0/+148
* Fixtures test fixes and general cleanup. Closes #9682 [norbert]Jeremy Kemper2007-09-282-33/+22
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-286-7/+7
* Added fixture caching thatll speed up a normal fixture-powered test suite bet...David Heinemeier Hansson2007-09-282-0/+32
* Correctly quote id list for limited eager loading. Closes #7482.Jeremy Kemper2007-09-221-0/+1
* Fix broken mysql test [frederick.cheung@gmail.com]Michael Koziarski2007-09-221-0/+1
* Fixed rename_column for SQLite when using symbols for the column names (close...David Heinemeier Hansson2007-09-221-1/+10
* Make date tests pass on 64-bit (closes #9121) [mutru]David Heinemeier Hansson2007-09-221-1/+1
* Added ActiveRecord::Base#to_json/from_json (currently does not support :inclu...David Heinemeier Hansson2007-09-203-29/+64
* Stop users from calling .create on a has_many / habtm association when the ow...Michael Koziarski2007-09-182-4/+24
* Define dynamic finders as real methods after first usage. Close #9317Tobias Lütke2007-09-181-0/+41
* Associations macros accept extension blocks alongside modules. Closes #9346.Jeremy Kemper2007-09-172-1/+16
* Ensure that custom mutators aren't redefined by define_attribute_methods. [Koz]Michael Koziarski2007-09-172-0/+13
* Speed up and simplify query caching.Jeremy Kemper2007-09-171-57/+39
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-161-0/+10
* Eager loading respects explicit :joins. Closes #9496.Jeremy Kemper2007-09-151-0/+5
* Fixed that altering join tables in migrations would fail w/ sqlite3 #7453 [Ti...David Heinemeier Hansson2007-09-151-0/+4
* Fix association writer with :dependent => :nullify. Closes #7314.Jeremy Kemper2007-09-141-0/+5
* OpenBase: update for new lib and latest Rails. Support migrations. Closes #8748.Jeremy Kemper2007-09-134-38/+71
* minor speedups + forward-compat syntaxJeremy Kemper2007-09-131-0/+0
* Kill lingering actsJeremy Kemper2007-09-112-4/+1
* Moved acts_as_tree into a plugin of the same name on the official Rails svn (...David Heinemeier Hansson2007-09-114-264/+7
* Moved acts_as_nested_set into a plugin of the same name on the official Rails...David Heinemeier Hansson2007-09-113-215/+28
* Remove acts_as_list. Users are advised to install the new plugin. Reference...Michael Koziarski2007-09-103-317/+0
* Explicitly require active_record/query_cache before using it.Jeremy Kemper2007-09-081-1/+3
* Fix assertion for the mysql default work around committed earlier.Michael Koziarski2007-09-051-1/+5
* Add :allow_blank to validations. Like allow_nil, but for values which are +bl...Michael Koziarski2007-09-051-0/+18
* Fix bug where unserializing an attribute attempts to modify a frozen @attribu...Rick Olson2007-09-041-0/+9
* Work around mysql limitations for defaults on text columns with not null. Cl...Michael Koziarski2007-09-042-2/+2
* Remove deprecated functionality from edge rails. Closes #9387 [lifofifo]Michael Koziarski2007-09-035-219/+2
* Ensure QueryCache doesn't try to dup numeric results (does not affect the maj...Michael Koziarski2007-09-021-1/+7
* Remove commented out test which refers to old code, old bugs and uses ObjectS...Michael Koziarski2007-08-291-22/+0
* Pass the right binding when string is passed to :if with validations. [casper...Michael Koziarski2007-08-281-0/+22