| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Replace the transaction {|transaction|..} semantics with a new Exception Acti... | Michael Koziarski | 2007-05-18 | 1 | -2/+2 |
* | Ensure copy table test runs for sqlite and sqlite3. [mislav] Cllosoes #8328 | Michael Koziarski | 2007-05-12 | 1 | -3/+4 |
* | Sexy dumper now has its groove on (closes #8281) [Chris Wanstrath] | David Heinemeier Hansson | 2007-05-11 | 1 | -4/+20 |
* | Use assert_match instead of String#include? so we can get helpful error messa... | Michael Koziarski | 2007-05-06 | 1 | -1/+3 |
* | Change Base#to_xml to take the name for a container element for an associatio... | Michael Koziarski | 2007-05-03 | 1 | -1/+8 |
* | Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ... | David Heinemeier Hansson | 2007-04-28 | 1 | -2/+0 |
* | Improve Performance of calling create on has_many :through associations by av... | Michael Koziarski | 2007-04-26 | 1 | -2/+14 |
* | Added yielding of Builder instance for ActiveRecord::Base#to_xml calls [DHH] | David Heinemeier Hansson | 2007-04-13 | 1 | -0/+8 |
* | Hash#to_xml supports YAML attributes; ActiveRecord::Base#to_xml support seria... | Jeremy Kemper | 2007-03-18 | 2 | -7/+18 |
* | Base.update_all :order and :limit options. Useful for MySQL updates that must... | Jeremy Kemper | 2007-03-17 | 1 | -0/+6 |
* | Remove deprecated object transactions. People relying on this functionality ... | Michael Koziarski | 2007-03-16 | 1 | -20/+0 |
* | Remove special cases for BigDecimal and SQLite, tests pass without them and f... | Michael Koziarski | 2007-03-16 | 1 | -9/+3 |
* | Fix typo in migration test. | Jeremy Kemper | 2007-03-16 | 1 | -1/+1 |
* | PostgreSQL: remove DateTime -> Time downcast. Bypass the DateTime migration t... | Jeremy Kemper | 2007-03-16 | 1 | -4/+6 |
* | find_or_create_by_* takes a hash so you can create with more attributes than ... | Jeremy Kemper | 2007-03-14 | 1 | -0/+19 |
* | Make sure with_scope takes both :select and :joins into account when setting ... | Michael Koziarski | 2007-03-13 | 1 | -0/+10 |
* | Allow a polymorphic :source for has_many :through associations. Closes #7143... | Rick Olson | 2007-03-13 | 2 | -0/+14 |
* | forgot to add tests for #7044 | Rick Olson | 2007-03-13 | 1 | -0/+145 |
* | Consistently quote primary key column names. Closes #7763. | Jeremy Kemper | 2007-03-09 | 22 | -1/+99 |
* | Fixtures: fix YAML ordered map support. Closes #2665. | Jeremy Kemper | 2007-03-09 | 1 | -1/+1 |
* | DateTimes assume the default timezone. Closes #7764. | Jeremy Kemper | 2007-03-09 | 1 | -0/+5 |
* | Oracle: overflow Time to DateTime. Closes #7718. | Jeremy Kemper | 2007-03-06 | 3 | -4/+5 |
* | Fix an edge case with dates during the Italian calendar reform! Hehe. Closes ... | Jeremy Kemper | 2007-03-06 | 1 | -2/+9 |
* | Fix has_many :through << with custom foreign keys. Closes #6466, #7153. | Jeremy Kemper | 2007-03-05 | 2 | -2/+7 |
* | Test DateTime native type in migrations. References #7649. | Jeremy Kemper | 2007-03-04 | 1 | -2/+4 |
* | SQLServer: recognize real column type as Ruby float, correctly schema-dump ta... | Jeremy Kemper | 2007-03-03 | 2 | -1/+22 |
* | Added fixtures :all to test_helper.rb to assume that most people just want al... | David Heinemeier Hansson | 2007-02-25 | 4 | -0/+9 |
* | Added database connection as a yield parameter to ActiveRecord::Base.transact... | David Heinemeier Hansson | 2007-02-21 | 1 | -1/+19 |
* | Fixed query cache when multiple database connections were involved | Tobias Lütke | 2007-02-21 | 1 | -0/+11 |
* | You can now use cache in instance hierachies. This allows ActiveRecord::Base.... | Tobias Lütke | 2007-02-20 | 1 | -2/+18 |
* | MySQL disallows TEXT defaults so don't test for them. | Jeremy Kemper | 2007-02-11 | 1 | -3/+6 |
* | Made increment_counter/decrement_counter play nicely with optimistic locking,... | Jamis Buck | 2007-02-07 | 1 | -0/+51 |
* | Introducing Model.cache { ... } for the occasional query caching needs. ( fan... | Tobias Lütke | 2007-02-06 | 2 | -16/+100 |
* | When dealing with SQLite3, use the table_info pragma helper, so that the bind... | Jamis Buck | 2007-01-30 | 1 | -1/+1 |
* | Oracle: fix lob and text default handling. Closes #7344. | Jeremy Kemper | 2007-01-29 | 1 | -18/+19 |
* | SQLServer: don't choke on strings containing 'null'. Closes #7083. | Jeremy Kemper | 2007-01-28 | 1 | -2/+10 |
* | MySQL: blob and text columns may not have defaults in 5.x. Update fixtures sc... | Jeremy Kemper | 2007-01-28 | 3 | -4/+11 |
* | update_all can take a Hash argument. sanitize_sql splits into two methods for... | Jeremy Kemper | 2007-01-28 | 1 | -10/+23 |
* | Post title and body not null. References #6778. | Jeremy Kemper | 2007-01-28 | 1 | -1/+1 |
* | MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last i... | Jeremy Kemper | 2007-01-28 | 1 | -0/+6 |
* | Don't create instance writer methods for class attributes. Closes #7401 [Rick] | Rick Olson | 2007-01-28 | 1 | -0/+10 |
* | Add missing tests ensuring callbacks work with class inheritance. Closes #73... | Rick Olson | 2007-01-24 | 1 | -0/+23 |
* | Fixtures use the table name and connection from set_fixture_class. Closes #7330. | Jeremy Kemper | 2007-01-24 | 1 | -0/+11 |
* | Subclasses of an abstract class work with single-table inheritance. Reference... | Jeremy Kemper | 2007-01-23 | 2 | -1/+12 |
* | Allow the Oracle adapter to insert a string "null". Closes #6997 [laurelfan] | Michael Koziarski | 2007-01-16 | 1 | -1/+10 |
* | change_column accepts :default => nil. Closes #6956. | Jeremy Kemper | 2007-01-15 | 1 | -2/+15 |
* | MySQL, PostgreSQL: change_column_default quotes the default value and doesn't... | Jeremy Kemper | 2007-01-15 | 1 | -2/+14 |
* | Oracle: create_table takes a :sequence_name option to override the 'tablename... | Jeremy Kemper | 2007-01-15 | 3 | -2/+56 |
* | Test that calculations don't modify their options hash. References #6929. [ev... | Jeremy Kemper | 2007-01-14 | 1 | -0/+8 |
* | Aggregate reflection klass works with nested :class_name | Jeremy Kemper | 2007-01-14 | 1 | -0/+7 |