| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a deprecation warning for abiguous boolean values | Sean Griffin | 2014-10-16 | 1 | -4/+6 |
* | test, better describe `SerializationTypeMismatch` behavior. refs #14716. | Yves Senn | 2014-10-16 | 1 | -2/+1 |
* | pg, test assigning non-array values to an array column. Closes #14716. | Yves Senn | 2014-10-16 | 1 | -0/+9 |
* | add table.bigint support | Aaron Patterson | 2014-10-15 | 1 | -0/+19 |
* | Raise an error for has_one associations which try to go :through a polymorphi... | Tu Hoang | 2014-10-15 | 1 | -0/+6 |
* | :scissors: duplicated `require`s | Godfrey Chan | 2014-10-14 | 1 | -1/+0 |
* | make sure cache is not used for collection assocations too | Aaron Patterson | 2014-10-14 | 1 | -1/+12 |
* | break cache if we're inside a "scoping" call. fixes #17052 | Aaron Patterson | 2014-10-14 | 1 | -0/+10 |
* | measure record instantiation time in AS::Notifications | Aaron Patterson | 2014-10-13 | 1 | -0/+36 |
* | add length to ActiveRecord::Result | Aaron Patterson | 2014-10-13 | 1 | -0/+4 |
* | Merge pull request #17232 from Agis-/issue-17209 | Rafael Mendonça França | 2014-10-13 | 1 | -0/+9 |
|\ |
|
| * | Autosave callbacks shouldn't be `after_save` | Agis- | 2014-10-13 | 1 | -0/+9 |
* | | Replace Enumerable#reverse.each with Enumerable#reverse_each | Erik Michaels-Ober | 2014-10-13 | 1 | -1/+1 |
|/ |
|
* | Merge pull request #17014 from grosser/grosser/fast-fixtures | Aaron Patterson | 2014-10-10 | 2 | -32/+0 |
|\ |
|
| * | speed up fixtures by not loading all their classes | grosser | 2014-10-06 | 2 | -32/+0 |
* | | ar/connection_pool: honor overriden rack.test in middleware | Simon Eskildsen | 2014-09-23 | 1 | -0/+8 |
* | | add a truncate method to the connection | Aaron Patterson | 2014-09-22 | 2 | -0/+23 |
|/ |
|
* | Better regression test for Fixtures with fk as a symbol | Arthur Neves | 2014-09-22 | 1 | -10/+1 |
* | fix fixtures not loading if a belongs_to association is defined with a :forei... | Will Bryant | 2014-09-22 | 1 | -0/+9 |
* | Fix assertions in AR::TestCase::AttributeMethodsTest | Yuki Nishijima | 2014-09-21 | 1 | -3/+3 |
* | Fix typo [ci skip] | Yuki Nishijima | 2014-09-20 | 1 | -1/+1 |
* | Fix find_by with associations not working with adequate record | Godfrey Chan | 2014-09-20 | 1 | -0/+5 |
* | Merge pull request #15791 from zev/add_model_to_recordnotfound_message | Aaron Patterson | 2014-09-19 | 1 | -10/+18 |
|\ |
|
| * | Update RecordNotFound exception cases to include a message with the | Zev Blut | 2014-06-18 | 1 | -10/+18 |
* | | Merge pull request #16875 from alan/dont_autosave_has_one_through_record | Rafael Mendonça França | 2014-09-17 | 1 | -0/+24 |
|\ \ |
|
| * | | Don't autosave unchanged has_one through records | Alan Kennedy | 2014-09-15 | 1 | -0/+24 |
* | | | Allow YAML serialization when using TZ aware attributes | Sean Griffin | 2014-09-17 | 1 | -0/+8 |
* | | | do not dump foreign keys for ignored tables. | Yves Senn | 2014-09-17 | 1 | -0/+5 |
* | | | pg, correctly dump foreign keys targeting tables in a different schema. | Yves Senn | 2014-09-17 | 1 | -0/+26 |
|/ / |
|
* | | Merge pull request #13656 from chanks/rollback_transactions_in_killed_threads | Matthew Draper | 2014-09-14 | 1 | -0/+31 |
|\ \ |
|
| * | | Roll back open transactions when the running thread is killed. | Chris Hanks | 2014-08-22 | 1 | -0/+31 |
* | | | pg, add test cases for updateable views. | Yves Senn | 2014-09-11 | 1 | -0/+45 |
* | | | reuse view test-cases for pg materialized view tests. | Yves Senn | 2014-09-11 | 2 | -67/+36 |
* | | | switch `assert_operator` arguments as discussed in #16860. | Yves Senn | 2014-09-11 | 1 | -1/+1 |
* | | | A `NullRelation` should represent nothing. Closes #15176. | Yves Senn | 2014-09-11 | 2 | -0/+9 |
* | | | Merge pull request #16839 from chancancode/default_test_order | Rafael Mendonça França | 2014-09-10 | 1 | -1/+1 |
|\ \ \ |
|
| * | | | Default to sorting user's test cases for now | Godfrey Chan | 2014-09-08 | 1 | -1/+1 |
* | | | | Speed up schema dumper tests | Jeremy Kemper | 2014-09-10 | 1 | -11/+9 |
* | | | | Include default column limits in schema.rb | Jeremy Kemper | 2014-09-10 | 1 | -4/+10 |
* | | | | MySQL: schema.rb now includes TEXT and BLOB column limits. | Jeremy Kemper | 2014-09-10 | 1 | -4/+4 |
* | | | | MySQL: correct LONGTEXT and LONGBLOB limits from 2GB to their true 4GB | Jeremy Kemper | 2014-09-10 | 1 | -2/+2 |
* | | | | Replace drop sql statement to drop_table method | Yasuo Honda | 2014-09-11 | 3 | -5/+5 |
* | | | | Oracle does not support `IF EXISTS` for `DROP VIEW`. | Yves Senn | 2014-09-09 | 1 | -2/+2 |
* | | | | models backed by views don't assume "id" columns are the primary key. | Yves Senn | 2014-09-09 | 1 | -0/+11 |
* | | | | add test-cases for primary-key-less-views. Closes #16555. | Yves Senn | 2014-09-09 | 1 | -0/+43 |
* | | | | Merge pull request #14056 from girishso/14041 | Yves Senn | 2014-09-09 | 2 | -3/+2 |
|\ \ \ \ |
|
| * | | | | SQLite3Adapter now checks for views in table_exists? fixes: 14041 | Girish S | 2014-02-14 | 1 | -0/+10 |
* | | | | | introduce `connection.supports_views?` and basic view tests. | Yves Senn | 2014-09-09 | 1 | -0/+42 |
* | | | | | Allow included modules to override association methods. | Yves Senn | 2014-09-09 | 2 | -0/+15 |
* | | | | | Merge pull request #16827 from kuldeepaggarwal/f-disable-migration-logging | Yves Senn | 2014-09-08 | 1 | -1/+4 |
|\ \ \ \ \
| |_|/ / /
|/| | | | |
|