| Commit message (Expand) | Author | Age | Files | Lines |
* | Migrations: raise if a column is duplicated. Closes #7345. | Jeremy Kemper | 2007-06-07 | 1 | -0/+2 |
* | Fixtures: correctly delete and insert fixtures in a single transaction. Close... | Jeremy Kemper | 2007-06-05 | 1 | -0/+2 |
* | Fixtures: people(:technomancy, :josh) returns both fixtures. Closes #7880. | Jeremy Kemper | 2007-06-05 | 1 | -0/+2 |
* | Calculations support non-numeric foreign keys. Closes #8154. | Jeremy Kemper | 2007-06-01 | 1 | -0/+2 |
* | with_scope is protected. Closes #8524. | Jeremy Kemper | 2007-05-30 | 1 | -0/+2 |
* | Quickref for association methods. Closes #7723. | Jeremy Kemper | 2007-05-30 | 1 | -0/+2 |
* | Calculations: return nil average instead of 0 when there are no rows to avera... | Jeremy Kemper | 2007-05-30 | 1 | -0/+2 |
* | acts_as_nested_set: direct_children is sorted correctly. Closes #4761. | Jeremy Kemper | 2007-05-30 | 1 | -0/+2 |
* | Raise an exception if both attr_protected and attr_accessible are declared. C... | Jeremy Kemper | 2007-05-29 | 1 | -0/+2 |
* | SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL... | Jeremy Kemper | 2007-05-29 | 1 | -0/+2 |
* | Allow nil serialized attributes with a set class constraint. #7293 [sandofsky] | Rick Olson | 2007-05-28 | 1 | -0/+2 |
* | Oracle binary fixtures; pull fixture insertion into the adapters. Closes #7987. | Jeremy Kemper | 2007-05-26 | 1 | -0/+4 |
* | Announce migration versions as they're performed. | Jeremy Kemper | 2007-05-26 | 1 | -0/+2 |
* | find gracefully copes with blank :conditions. Closes #7599. | Jeremy Kemper | 2007-05-26 | 1 | -0/+2 |
* | validates_numericality_of takes :greater_than, :greater_than_or_equal_to, :eq... | Jeremy Kemper | 2007-05-26 | 1 | -0/+2 |
* | MySQL: create_database takes :charset and :collation options. Charset default... | Jeremy Kemper | 2007-05-26 | 1 | -0/+2 |
* | Find with a list of ids supports limit/offset. Closes #8437. | Jeremy Kemper | 2007-05-25 | 1 | -0/+2 |
* | Optimistic locking: revert the lock version when an update fails. Closes #784... | Jeremy Kemper | 2007-05-25 | 1 | -0/+2 |
* | Migrations: add_column supports custom column types. Closes #7742. First-patc... | Jeremy Kemper | 2007-05-25 | 1 | -0/+2 |
* | Load database adapters on demand. Eliminates config.connection_adapters and R... | Jeremy Kemper | 2007-05-25 | 1 | -0/+2 |
* | update changelog too | Rick Olson | 2007-05-24 | 1 | -0/+2 |
* | belongs_to assignment creates a new proxy rather than modifying its target in... | Jeremy Kemper | 2007-05-22 | 1 | -0/+2 |
* | Fix column type detection while loading fixtures. Closes #7987 [roderickvd] | Rick Olson | 2007-05-21 | 1 | -0/+2 |
* | Document deep eager includes. Closes #6267. | Jeremy Kemper | 2007-05-19 | 1 | -1/+3 |
* | Docs: warn that associations names shouldn't be reserved words. Closes #4378. | Jeremy Kemper | 2007-05-18 | 1 | -0/+2 |
* | Sanitize Base#inspect. Closes #8392. | Jeremy Kemper | 2007-05-18 | 1 | -0/+2 |
* | Replace the transaction {|transaction|..} semantics with a new Exception Acti... | Michael Koziarski | 2007-05-18 | 1 | -0/+2 |
* | Oracle: extract column length for CHAR also. Closes #7866. | Jeremy Kemper | 2007-05-15 | 1 | -0/+2 |
* | Sexy dumper now has its groove on (closes #8281) [Chris Wanstrath] | David Heinemeier Hansson | 2007-05-11 | 1 | -2/+0 |
* | Document :allow_nil option for validates_acceptance_of since it defaults to t... | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Update documentation for :dependent declaration so that it explicitly uses th... | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Add documentation caveat about when to use count_by_sql. Closes #8090. [fearo... | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Also add documentation enhancements for increment_counter. Closes #8092. [fea... | Marcel Molina | 2007-05-06 | 1 | -1/+1 |
* | Enhance documentation for decrement_counter. Closes #8093. [fearoffish] | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Provide brief introduction to what optimistic locking is. Closes #8097. [fear... | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Add documentation for :encoding option to mysql adapter. Closes #8219 [marclove] | Marcel Molina | 2007-05-06 | 1 | -0/+2 |
* | Added short-hand declaration style to migrations (inspiration from Sexy Migra... | David Heinemeier Hansson | 2007-05-06 | 1 | -1/+22 |
* | Change Base#to_xml to take the name for a container element for an associatio... | Michael Koziarski | 2007-05-03 | 1 | -0/+2 |
* | Improve Performance of calling create on has_many :through associations by av... | Michael Koziarski | 2007-04-26 | 1 | -0/+2 |
* | Improved performance by relying less on exception raising #8159 [Blaine] | David Heinemeier Hansson | 2007-04-24 | 1 | -0/+2 |
* | Added ActiveRecord::Base.inspect to return a column-view like #<Post id:integ... | David Heinemeier Hansson | 2007-04-21 | 1 | -0/+2 |
* | Added yielding of Builder instance for ActiveRecord::Base#to_xml calls [DHH] | David Heinemeier Hansson | 2007-04-13 | 1 | -0/+2 |
* | documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana... | Rick Olson | 2007-03-27 | 1 | -0/+2 |
* | Add helpful debugging info to the ActiveRecord::StatementInvalid exception in... | Rick Olson | 2007-03-27 | 1 | -0/+2 |
* | SQLite: binary escaping works with ='u'. Closes #7862. | Jeremy Kemper | 2007-03-19 | 1 | -0/+2 |
* | Hash#to_xml supports YAML attributes; ActiveRecord::Base#to_xml support seria... | Jeremy Kemper | 2007-03-18 | 1 | -0/+2 |
* | Base.update_all :order and :limit options. Useful for MySQL updates that must... | Jeremy Kemper | 2007-03-17 | 1 | -0/+2 |
* | Remove deprecated object transactions. People relying on this functionality ... | Michael Koziarski | 2007-03-16 | 1 | -0/+2 |
* | PostgreSQL: remove DateTime -> Time downcast. Bypass the DateTime migration t... | Jeremy Kemper | 2007-03-16 | 1 | -0/+2 |
* | find_or_create_by_* takes a hash so you can create with more attributes than ... | Jeremy Kemper | 2007-03-14 | 1 | -0/+2 |