| Commit message (Expand) | Author | Age | Files | Lines |
* | Move `test_not_compatible_with_serialize_macro` to `JSONSharedTestCases` | Ryuta Kamizono | 2017-08-11 | 1 | -11/+2 |
* | Do not let use `serialize` on native JSON/array column | Kir Shatrov | 2017-08-04 | 1 | -0/+9 |
* | Use frozen-string-literal in ActiveRecord | Kir Shatrov | 2017-07-19 | 1 | -0/+2 |
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
* | Consolidate database specific JSON types to `Type::Json` | Ryuta Kamizono | 2017-05-30 | 1 | -18/+9 |
* | Extract `JSONSharedTestCases` | Ryuta Kamizono | 2017-05-22 | 1 | -180/+2 |
* | Fix `deserialize` with JSON array | Ryuta Kamizono | 2017-03-06 | 1 | -0/+10 |
* | "Use assert_nil if expecting nil from ...:in `...'. This will fail in MT6." | Akira Matsuda | 2016-12-25 | 1 | -2/+2 |
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 1 | -8/+8 |
* | Serialize JSON attribute value nil as SQL NULL, not JSON 'null' | Trung Duc Tran | 2016-09-23 | 1 | -0/+16 |
* | Add three new rubocop rules | Rafael Mendonça França | 2016-08-16 | 1 | -15/+15 |
* | applies remaining conventions across the project | Xavier Noria | 2016-08-06 | 1 | -1/+1 |
* | applies new string literal convention in activerecord/test | Xavier Noria | 2016-08-06 | 1 | -22/+22 |
* | Properly serialize all JSON primitives in the AR JSON type | Sean Griffin | 2016-04-13 | 1 | -5/+12 |
* | File encoding is defaulted to utf-8 in Ruby >= 2.1 | Akira Matsuda | 2015-09-18 | 1 | -1/+0 |
* | make it possible to run AR tests with bin/test | Yves Senn | 2015-06-11 | 1 | -2/+2 |
* | Fix json_test | palkan | 2015-03-11 | 1 | -0/+1 |
* | Remove unused line | Ryuta Kamizono | 2015-03-03 | 1 | -1/+0 |
* | `Type#type_cast_from_database` -> `Type#deserialize` | Sean Griffin | 2015-02-17 | 1 | -5/+5 |
* | pg tests, be clear about the missing type that causes a test skip. | Yves Senn | 2015-02-12 | 1 | -7/+6 |
* | rm `Type#number?` | Sean Griffin | 2015-02-07 | 1 | -1/+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 most type related predicates from `Column` | Sean Griffin | 2015-01-30 | 1 | -8/+10 |
* | Don't error when invalid json is assigned to a JSON column | Sean Griffin | 2015-01-21 | 1 | -0/+8 |
* | Should escape regexp wildcard character `.` | Ryuta Kamizono | 2015-01-19 | 1 | -1/+1 |
* | Prefer `array?` rather than `array` | Ryuta Kamizono | 2015-01-04 | 1 | -1/+1 |
* | tests, remove unneeded requires. | Yves Senn | 2014-11-06 | 1 | -3/+0 |
* | Added SchemaDumper support for tables with jsonb columns. | Ted O'Meara | 2014-11-04 | 1 | -0/+8 |
* | Add support for Postgresql JSONB | Philippe Creux | 2014-07-24 | 1 | -9/+25 |
* | Remove the `text?` predicate from the type objects | Sean Griffin | 2014-07-06 | 1 | -1/+0 |
* | Use the type object for sending JSON to the database | Sean Griffin | 2014-06-29 | 1 | -1/+1 |
* | Consolidate testing of update_all type casting | Sean Griffin | 2014-06-26 | 1 | -10/+0 |
* | Don't type cast the default on the column | Sean Griffin | 2014-06-17 | 1 | -2/+1 |
* | Don't assume that Hstore columns have always changed | Sean Griffin | 2014-06-17 | 1 | -1/+2 |
* | Detect in-place changes on mutable AR attributes | Sean Griffin | 2014-06-13 | 1 | -0/+20 |
* | Rename `type_cast` to `type_cast_from_database` | Sean Griffin | 2014-06-09 | 1 | -4/+4 |
* | Make `_before_type_cast` actually be before type cast | Sean Griffin | 2014-06-09 | 1 | -0/+1 |
* | Bring type casting behavior of hstore/json in line with serialized | Sean Griffin | 2014-06-04 | 1 | -0/+8 |
* | Revert "test pg, we don't care about the internal state of `column#default`." | Yves Senn | 2014-06-03 | 1 | -0/+3 |
* | test pg, remove unused column assignments. Follow up to 254cdf47 | Yves Senn | 2014-06-03 | 1 | -2/+0 |
* | test pg, we don't care about the internal state of `column#default`. | Yves Senn | 2014-06-03 | 1 | -1/+0 |
* | pg, keep `hstore` and `json` attributes as `Hash` in @attributes. | Yves Senn | 2014-05-28 | 1 | -0/+8 |
* | test, use `columns_hash[]` in place of `columns.find {}`. | Yves Senn | 2014-05-12 | 1 | -2/+2 |
* | PostgreSQL, test-cases to lock down column default values. | Yves Senn | 2014-03-28 | 1 | -0/+11 |
* | PostgreSQL, test cases to lock the current column types. | Yves Senn | 2014-03-28 | 1 | -7/+13 |
* | Use teardown helper method. | Guo Xiang Tan | 2014-03-14 | 1 | -1/+1 |
* | no need to `return skip` in tests. `skip` is enough. | Yves Senn | 2014-01-16 | 1 | -1/+1 |
* | Tidy up fix for PG extensions quoting | Carlos Antonio da Silva | 2013-12-23 | 1 | -2/+6 |
* | Serialize postgres' hstore, json and array types correctly in AR update methods. | Tadas Tamosauskas | 2013-12-23 | 1 | -0/+6 |