aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed rename_column for SQLite when using symbols for the column names (close...David Heinemeier Hansson2007-09-221-2/+3
* Docfix (closes #8767) [kampers]David Heinemeier Hansson2007-09-221-1/+1
* Allow frameworks to be required by their gem name (closes #8845) [drnic]David Heinemeier Hansson2007-09-221-0/+1
* Removed unused @join_sql reference (closes #9174) [danger]David Heinemeier Hansson2007-09-221-1/+1
* Doc fix (closes #9323) [Henrik N]David Heinemeier Hansson2007-09-221-2/+2
* Added the possibility of using symbols in addition to concrete classes with A...David Heinemeier Hansson2007-09-221-3/+5
* Stress that you should really install the C-based MySQL library when running ...David Heinemeier Hansson2007-09-201-0/+5
* Added ActiveRecord::Base#to_json/from_json (currently does not support :inclu...David Heinemeier Hansson2007-09-205-24/+89
* Stop users from calling .create on a has_many / habtm association when the ow...Michael Koziarski2007-09-182-3/+29
* Define dynamic finders as real methods after first usage. Close #9317Tobias Lütke2007-09-181-28/+31
* Deprecation: remove deprecated threaded_connections methods. Use allow_concur...Jeremy Kemper2007-09-181-10/+0
* Associations macros accept extension blocks alongside modules. Closes #9346.Jeremy Kemper2007-09-171-6/+6
* Don't worry about retrieving the last inserted id. [tarmo_t]Jeremy Kemper2007-09-171-1/+1
* Ensure that custom mutators aren't redefined by define_attribute_methods. [Koz]Michael Koziarski2007-09-171-3/+10
* Speed up and simplify query caching.Jeremy Kemper2007-09-1712-175/+171
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-166-9/+79
* Eager loading respects explicit :joins. Closes #9496.Jeremy Kemper2007-09-151-1/+1
* Extract Firebird, FronBase, and OpenBase adapters into gems. Closes #9508, #9...Jeremy Kemper2007-09-153-2050/+0
* RubyGem database adapters: expects a gem named activerecord-<database>-adapte...Jeremy Kemper2007-09-151-3/+19
* Fixed that altering join tables in migrations would fail w/ sqlite3 #7453 [Ti...David Heinemeier Hansson2007-09-151-1/+2
* Fix association writer with :dependent => :nullify. Closes #7314.Jeremy Kemper2007-09-141-8/+11
* Deprecation: removed Reloadable.Jeremy Kemper2007-09-142-8/+2
* OpenBase: update for new lib and latest Rails. Support migrations. Closes #8748.Jeremy Kemper2007-09-131-119/+229
* minor speedups + forward-compat syntaxJeremy Kemper2007-09-135-19/+24
* minor speedupJeremy Kemper2007-09-131-2/+2
* Remove empty actsJeremy Kemper2007-09-112-0/+0
* Moved acts_as_tree into a plugin of the same name on the official Rails svn (...David Heinemeier Hansson2007-09-112-98/+0
* Moved acts_as_nested_set into a plugin of the same name on the official Rails...David Heinemeier Hansson2007-09-112-213/+0
* Remove broken requireMichael Koziarski2007-09-101-1/+0
* Remove acts_as_list. Users are advised to install the new plugin. Reference...Michael Koziarski2007-09-102-254/+0
* Remove the wrapping feature that was never actually turned into something rea...David Heinemeier Hansson2007-09-092-73/+0
* Update copyright spanDavid Heinemeier Hansson2007-09-091-1/+1
* Match Fixnum and Float in particular. Rescue dup error and return result.Jeremy Kemper2007-09-081-4/+5
* Explicitly require active_record/query_cache before using it.Jeremy Kemper2007-09-082-2/+1
* Add :allow_blank to validations. Like allow_nil, but for values which are +bl...Michael Koziarski2007-09-051-1/+8
* Fix bug where unserializing an attribute attempts to modify a frozen @attribu...Rick Olson2007-09-041-1/+1
* Work around mysql limitations for defaults on text columns with not null. Cl...Michael Koziarski2007-09-041-0/+1
* Remove deprecated functionality from edge rails. Closes #9387 [lifofifo]Michael Koziarski2007-09-033-162/+5
* Ensure QueryCache doesn't try to dup numeric results (does not affect the maj...Michael Koziarski2007-09-021-5/+6
* Performance: absorb instantiate and initialize_with_callbacks into the Base m...Jeremy Kemper2007-08-312-34/+15
* Formatting, grammar and spelling fixes for the associations documentation. [s...Michael Koziarski2007-08-288-226/+226
* Fix documentation error in xml serialization. [matt] Closes #9001Michael Koziarski2007-08-281-1/+1
* Formatting and grammatical fixes for the acts_as_* documentation [seanhussey,...Michael Koziarski2007-08-283-30/+30
* Pass the right binding when string is passed to :if with validations. [casper...Michael Koziarski2007-08-281-1/+1
* Use extract_options instead of ad-hoc partial implementations. [norbert] Clos...Michael Koziarski2007-08-281-11/+12
* Remove unnecessary loop in validates_presence_of. [sur] Closes #9392Michael Koziarski2007-08-281-7/+5
* Make sure create! raises errors on validation when creating multiple records....Michael Koziarski2007-08-281-1/+1
* Fix spacingDavid Heinemeier Hansson2007-08-212-2/+2
* Fixed that eager loading queries and with_scope should respect the :group opt...David Heinemeier Hansson2007-08-212-7/+16
* Fixed that eager loading queries should respect the :group option as well [DHH]David Heinemeier Hansson2007-08-211-0/+4