| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove ivar only when defined | Akira Matsuda | 2015-07-24 | 1 | -2/+2 |
* | Ensure that microsecond precision is only used for version of mysql that supp... | Jori Hardman | 2015-07-20 | 1 | -0/+14 |
* | make it possible to run AR tests with bin/test | Yves Senn | 2015-06-11 | 15 | -64/+54 |
* | If specify `strict: :default` explicitly, do not set sql_mode. | Ryuta Kamizono | 2015-05-26 | 1 | -0/+9 |
* | More exercise the create index sql tests | Ryuta Kamizono | 2015-05-04 | 1 | -0/+37 |
* | Merge pull request #17569 from kamipo/dump_table_options | Rafael Mendonça França | 2015-05-03 | 1 | -0/+42 |
|\ |
|
| * | Correctly dump `:options` on `create_table` for MySQL | Ryuta Kamizono | 2015-05-03 | 1 | -0/+42 |
* | | Remove unused require | Ryuta Kamizono | 2015-05-03 | 1 | -1/+0 |
|/ |
|
* | Use `use_transactional_tests` in Active Record | Prem Sichanugrist | 2015-04-10 | 1 | -1/+1 |
* | Merge pull request #17574 from kamipo/charset_collation_options | Jeremy Kemper | 2015-04-07 | 1 | -0/+54 |
|\ |
|
| * | Add `:charset` and `:collation` options support for MySQL string and text col... | Ryuta Kamizono | 2015-03-06 | 1 | -0/+54 |
* | | Closes rails/rails#18864: Renaming transactional fixtures to transactional tests | Brandon Weiss | 2015-03-16 | 3 | -3/+3 |
|/ |
|
* | Prefer `drop_table if_exists: true` over raw SQL | Ryuta Kamizono | 2015-02-18 | 1 | -1/+1 |
* | prefer `drop_table if_exists: true` over raw SQL. | Yves Senn | 2015-02-18 | 2 | -2/+2 |
* | `Type#type_cast_from_database` -> `Type#deserialize` | Sean Griffin | 2015-02-17 | 1 | -1/+1 |
* | Extract `DateTimePrecisionTest` | Ryuta Kamizono | 2015-02-13 | 1 | -87/+0 |
* | Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on... | Vipul A M | 2015-02-03 | 1 | -1/+0 |
* | Remove Relation#bind_params | Sean Griffin | 2015-01-27 | 2 | -6/+6 |
* | Merge pull request #18067 from kamipo/format_datetime_string_according_to_pre... | Rafael Mendonça França | 2015-01-02 | 1 | -0/+87 |
|\ |
|
| * | Format the datetime string according to the precision of the datetime field. | Ryuta Kamizono | 2015-01-02 | 1 | -0/+17 |
| * | Allow precision option for MySQL datetimes. | Ryuta Kamizono | 2015-01-02 | 1 | -0/+70 |
|/ |
|
* | Stop relying on columns in mysql quoting tests | Sean Griffin | 2015-01-01 | 1 | -6/+2 |
* | Ensures that primary_key method will return nil when multi-pk | Arthur Neves | 2014-12-30 | 1 | -0/+6 |
* | Fix undesirable RangeError by Type::Integer. Add Type::UnsignedInteger. | Ryuta Kamizono | 2014-12-12 | 1 | -0/+30 |
* | Failure to rollback t.timestamps when within a change_table migration | noam | 2014-12-03 | 1 | -1/+1 |
* | Pass symbol as an argument instead of a block | Erik Michaels-Ober | 2014-11-29 | 3 | -6/+4 |
* | synchronize code and docs for `timestamps` and `add_timestamps`. | Yves Senn | 2014-11-20 | 1 | -1/+1 |
* | Remove the unused second argument to `substitute_at` | Sean Griffin | 2014-11-17 | 1 | -1/+1 |
* | rm `reorder_bind_params` | Sean Griffin | 2014-11-17 | 1 | -1/+1 |
* | Clear schema cache before each test | Akira Matsuda | 2014-09-01 | 1 | -0/+1 |
* | MySQL: set connection collation along with the charset | Jeremy Kemper | 2014-08-30 | 1 | -0/+5 |
* | Merge pull request #16481 from sgrif/sg-change-default-timestamps | David Heinemeier Hansson | 2014-08-17 | 1 | -1/+1 |
|\ |
|
| * | Change the default `null` value for timestamps | Sean Griffin | 2014-08-12 | 1 | -1/+1 |
* | | [ci skip] fix spelling of override | Akshay Vishnoi | 2014-08-13 | 1 | -1/+1 |
|/ |
|
* | Revert "Rename to test_mysql_strict_mode_disabled_dont_override_global_sql_mode" | Yasuo Honda | 2014-07-17 | 1 | -4/+3 |
* | Rename `type_cast` to `type_cast_from_database` | Sean Griffin | 2014-06-09 | 1 | -1/+1 |
* | Result sets never override a model's column type | Sean Griffin | 2014-05-29 | 1 | -0/+48 |
* | Delegate `Column#type` to the injected type object | Sean Griffin | 2014-05-19 | 1 | -2/+2 |
* | Add a type object to Column constructor | Sean Griffin | 2014-05-17 | 1 | -2/+2 |
* | Changed extract_limit in class Column to return correct mysql float and doubl... | Aaron Nelson | 2014-05-16 | 1 | -0/+38 |
* | Stringify variables names for mysql connections | Paul Nikitochkin | 2014-04-30 | 1 | -0/+8 |
* | Add ConnectionHelper to refactor tests. | Guo Xiang Tan | 2014-04-03 | 2 | -14/+6 |
* | No need to use begin/end blocks | Rafael Mendonça França | 2014-03-26 | 1 | -8/+8 |
* | No need to gsub the string | Rafael Mendonça França | 2014-03-26 | 1 | -1/+1 |
* | Fixes bugs for using indexes in CREATE TABLE by adding checks for table exist... | Steve Rice | 2014-03-25 | 1 | -2/+4 |
* | create indexes inline in CREATE TABLE for MySQL | Cody Cutrer | 2014-03-25 | 1 | -0/+11 |
* | Clean up tables after each test. | Guo Xiang Tan | 2014-03-22 | 2 | -92/+96 |
* | Use teardown helper method. | Guo Xiang Tan | 2014-03-14 | 2 | -2/+2 |
* | Merge pull request #13040 from kamipo/case_sensitive_comparison | Rafael Mendonça França | 2014-03-12 | 1 | -2/+22 |
|\ |
|
| * | Only use BINARY for mysql case sensitive uniqueness check when column has a c... | Ryuta Kamizono | 2013-11-26 | 1 | -2/+22 |