aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* Wrapped multi-step operations in transactionsDavid Heinemeier Hansson2004-12-141-16/+22
* fixtures :models will now also attempt to include the model.rb fileDavid Heinemeier Hansson2004-12-141-0/+11
* Fixed that has_and_belongs_to_many would generate bad sql when naming convent...David Heinemeier Hansson2004-12-141-4/+4
* Added a better exception for when a type column is used in a table without th...David Heinemeier Hansson2004-12-142-3/+20
* Extended no inclusion of messages if theyre nil to baseDavid Heinemeier Hansson2004-12-131-1/+3
* Fixed bug with reloading associationsDavid Heinemeier Hansson2004-12-131-1/+1
* Moved methods into the main body as only wiring is needed in append_featuresDavid Heinemeier Hansson2004-12-131-9/+7
* Fixed that every successive call on the sqlite adapter prepended RAILS_ROOT a...David Heinemeier Hansson2004-12-121-1/+1
* Added the possibility of marking fields as being in error without adding a me...David Heinemeier Hansson2004-12-121-2/+2
* Added methods for resetting the cached information on classes that you want t...David Heinemeier Hansson2004-12-121-5/+10
* No longer necessary to guard against reincludes with the new reset of inherit...David Heinemeier Hansson2004-12-122-2/+2
* Moved require_association to associations.rb and added methods for resetting ...David Heinemeier Hansson2004-12-123-31/+28
* Options for the new validation methods are now given as a hashDavid Heinemeier Hansson2004-12-102-11/+27
* Added Base.validate_uniqueness thatv alidates whether the value of the specif...David Heinemeier Hansson2004-12-103-6/+30
* Added Base.validate_presence as an alternative to implementing validate and d...David Heinemeier Hansson2004-12-101-12/+53
* Tidied up Fixtures for better readability and some error checking [bitsweat]David Heinemeier Hansson2004-12-091-36/+49
* Fixed TIMESTAMP columns broken due to TIME handling patchDavid Heinemeier Hansson2004-12-091-11/+15
* Fixed Base.errors to be indifferent as to whether strings or symbols are used.David Heinemeier Hansson2004-12-091-15/+20
* Added Base.validate_confirmation that encapsulates the pattern of wanting to ...David Heinemeier Hansson2004-12-091-0/+23
* Changed the Proc for a string to avoid repetition problemsDavid Heinemeier Hansson2004-12-091-5/+3
* Added Base.validate_confirmation that encapsulates the pattern of wanting to ...David Heinemeier Hansson2004-12-091-0/+31
* Added validation macros to make the stackable just like the lifecycle callbacksDavid Heinemeier Hansson2004-12-091-1/+46
* A fix that actually works...David Heinemeier Hansson2004-12-081-1/+1
* Callbacks added to the inheritable que should only be called once -- even as ...David Heinemeier Hansson2004-12-081-1/+1
* scope_condition defaults to 1 on list mixinDavid Heinemeier Hansson2004-12-081-3/+3
* Cleaned up the class_eval stuff in the new mixins a bitDavid Heinemeier Hansson2004-12-082-9/+8
* Added ActiveRecord::Mixins::Touch that will record creation and update times ...David Heinemeier Hansson2004-12-081-0/+35
* Added ActiveRecord::Mixins::List that can decorates an existing class with me...David Heinemeier Hansson2004-12-081-1/+4
* Renamed from ListMixin and mixins/list_mixin.rb to Mixins::List and mixin/lis...David Heinemeier Hansson2004-12-082-154/+155
* Unofficially added ListMixinDavid Heinemeier Hansson2004-12-081-0/+154
* Added named bind-style variable interpolation #281 [Michael Koziarski]David Heinemeier Hansson2004-12-081-6/+35
* Added the option for sanitizing find_by_sql and the offset parts in regular f...David Heinemeier Hansson2004-12-071-4/+9
* Fixed value quoting in all generated SQL statements, so that integers are not...David Heinemeier Hansson2004-12-078-49/+65
* Fixed has_and_belongs_to_many guessing of foreign key so that keys are genera...David Heinemeier Hansson2004-12-071-1/+1
* Added counter_sql option for has_many associations [bitsweat]David Heinemeier Hansson2004-12-072-7/+15
* Fixed that methods wrapped in callbacks still return their original result #2...David Heinemeier Hansson2004-12-071-25/+30
* Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron]David Heinemeier Hansson2004-12-071-0/+1
* Documentation bugsDavid Heinemeier Hansson2004-12-071-2/+2
* Added bind-style variable interpolation for the condition arrays that uses th...David Heinemeier Hansson2004-12-071-11/+15
* Added CSV format for fixtures #272 [what-a-day]David Heinemeier Hansson2004-12-071-36/+143
* Fixed fixtures using primary key fields called something else than "id" #270 ...David Heinemeier Hansson2004-12-061-1/+1
* Added extra words of caution for guarding against SQL-injection attacksDavid Heinemeier Hansson2004-12-061-3/+7
* Dont include the primary key in updates -- its unneeded and SQL Server chokes...David Heinemeier Hansson2004-12-011-3/+3
* Added proper handling of time fields that are turned into Time objects with t...David Heinemeier Hansson2004-12-011-1/+13
* Added reverse order of deleting fixtures, so referential keys can be maintain...David Heinemeier Hansson2004-12-011-15/+16
* Fixed infinite loop when environment is missing in database.ymlDavid Heinemeier Hansson2004-12-011-2/+6
* Added relative path search for sqlite dbfiles in database.yml (if RAILS_ROOT ...David Heinemeier Hansson2004-12-011-2/+3
* Moved the global require_* out of the classes so they actually work without s...David Heinemeier Hansson2004-11-301-3/+5
* Abolished ActionController::Base.require_or_load in favor of require_dependen...David Heinemeier Hansson2004-11-302-4/+12
* Silence errors occurring when reloading classesDavid Heinemeier Hansson2004-11-304-5/+11